Best of MySQL — February 2024
- 1
- 2
- 3
- 4
EverSQL·2y
SQL Optimization: a comprehensive developer’s guide
This post provides a comprehensive guide on optimizing SQL queries. It covers topics such as optimizing SELECT, INSERT, and DELETE SQL queries and provides tips on using indexes, improving joins, filtering, and more. The post also introduces EverSQL by Aiven, a tool that can provide performance insights and SQL optimization suggestions.
- 5
- 6
Planet Python·2y
Python SQL Database Connection Guide
Learn how to connect Python with an SQL database and perform various operations. This tutorial covers installing the database library, establishing a connection, executing queries, fetching results, committing changes, and closing the connection. It also provides examples of common database operations such as creating a database, creating tables, inserting data, selecting data, updating data, joining tables, using aggregate functions, deleting tables, and deleting databases.