DEV Community

Anas Dew
Anas Dew

Posted on

MySQL Tutorial for Beginners: A Step-by-Step Guide to Getting Started. Quick SQL connector

MySQL Tutorial for Beginners: A Step-by-Step Guide to Getting Started. Quick SQL connector

Introduction

Hey Dev! You got to the right place to learn about MySQL. It's an easy yet detailed guide, you will learn about MySQL and it's benefits, a python library which is so easy to perform queries and at the end, some cool projects to do. So without any further do. Let's writes some quieres.

Introduction to MySQL and Python

What is MySQL?

MySQL is a popular open-source relational database management system (RDBMS). It is a widely used tool for managing and organizing data in a structured way, particularly for use in web applications. MySQL is known for its reliability, simplicity, and performance, which makes it a good choice for many developers and organizations. It is developed, distributed, and supported by Oracle Corporation.

Why use MySQL with Python?

There are several reasons why you might want to use MySQL with Python:

  1. Integration: MySQL is a widely used database and integrating it with Python can help you take your application to the next level.

  2. Speed: MySQL is known for its speed, which makes it a good choice for high-performance applications.

  3. Ease of use: Python is a very easy-to-use language, which makes it easy for developers to write and maintain code.

  4. Scalability: Both MySQL and Python are highly scalable, which makes them a good choice for applications that are expected to grow over time.

  5. Popularity: MySQL and Python are both widely used, which means there is a large community of developers who can provide support and guidance.

Overall, using MySQL with Python can be a powerful combination for building robust, high-performance applications.

Setting up a MySQL database and installing Quick SQL connector

To set up a MySQL database and install the Python MySQL libraries, you can follow these steps:

  1. Install MySQL: You can download MySQL from the official website and install it on your system.

  2. Create a database: After installing MySQL, you can create a new database using the MySQL command-line client or MySQL Workbench.

    To create a database, simply use command CREATE DATABASE [database_name];

  3. Install the Python MySQL libraries: There are several Python libraries that you can use to connect to a MySQL database, such as PyMySQL, MySQL Connector, MySQLdb and a newly born library which is Quick SQL connector, which we will be using in this tutorial. You can install these libraries using pip, the Python package manager. For example, to install Quick SQL connector, you can use the following command: pip install quicksqlconnector.

  4. Connect to the database: Once you have installed the Python MySQL libraries and created a database, you can use Python to connect to the database and execute SQL queries.

Here is an example of how you can use Quick SQL connector to connect to a MySQL database in Python:

from quicksqlconnector import quicksqlconnector

# Syntax
# DB = quicksqlconnector('database','host', port, 'username', 'password')

DB = quicksqlconnector('mysql','localhost', 6606,'root', 'anas9916')
Enter fullscreen mode Exit fullscreen mode

Learn more about Quick SQL connector.

NOTE

Quick SQL has abilty to work with MySQL, PostgreSQL and SQLite as well. If you're working with SQlite you don't need connection arguments. You'll only need to provide database and database_name as parameters.

DB = quicksqlconnector('sqlite', database_name='my_example_database')
Enter fullscreen mode Exit fullscreen mode

Basic MySQL operations with Python

To execute any query for MySQL with Quick SQL Connector. It only has one method. Which is query and you can just put your raw SQL commands into it, And it will be executed.

# Syntax
DB.query('query','parameters':optional)
Enter fullscreen mode Exit fullscreen mode

Creating and deleting a table

To create a table in a database, you can use the following SQL command:

CREATE TABLE table_name (
   column1 datatype,
   column2 datatype,
   column3 datatype,
   ...
);
Enter fullscreen mode Exit fullscreen mode

For example, to create a table called "customers" with columns "id", "name", and "email", you could use the following code:

DB.query("CREATE TABLE customers (id INTEGER PRIMARY KEY, name TEXT, email TEXT );")
Enter fullscreen mode Exit fullscreen mode

To delete a table, you can use the following code:

DB.query("DROP table customers");
Enter fullscreen mode Exit fullscreen mode

Inserting data into table.

To insert data into a table, you can use the following SQL command:

INSERT INTO table_name (column1, column2, column3, ...)
VALUES (value1, value2, value3, ...);
Enter fullscreen mode Exit fullscreen mode

With Quick SQL connctor, the code will go like this.

DB.query("INSERT INTO customers (id, name, email) VALUES (1, 'John Smith', 'john@example.com');")
Enter fullscreen mode Exit fullscreen mode

The code above is correct but to be more secure and prevent our database from SQL injection, we will do the same with query parameters. See below

DB.query("INSERT INTO customers (id, name, email) VALUES (%s, %s, %s);", (1, "John Smith", "john@example.com"))
Enter fullscreen mode Exit fullscreen mode

That is perfect!

To update data in a table, you can use the following SQL command:

UPDATE table_name
SET column1 = value1, column2 = value2, ...
WHERE condition;
Enter fullscreen mode Exit fullscreen mode

With Quick SQL connector. the code will go like this.

DB.query("UPDATE customers SET email= %s WHERE id= %s;", ("john.smith@example.com", 1))
Enter fullscreen mode Exit fullscreen mode

Recommendation

Now you got the basic idea of how to work with Quick SQL connector library. As a beginner, I would suggest you to learn this way as it is much more easier and stratforward and less complex as compared to other libraries out there (I tested).

Retrieving data from a table using SELECT statements

The SELECT statement is used to retrieve data from a database. Here is the basic syntax for a SELECT statement:

SELECT column1, column2, ...
FROM table_name
WHERE condition;
Enter fullscreen mode Exit fullscreen mode

This statement retrieves all rows from the table_name table where the condition is true. The WHERE clause is optional, so if you omit it, the statement will return all rows from the table.

Here's an example to the same with Quick SQL connector

DB.query("SELECT id FROM customers WHERE name = 'anas dew';")

# This statement retrieves `id` column from the `Customers` table where the `name` column is 'anas dew'.
Enter fullscreen mode Exit fullscreen mode

You can also use the * wildcard to select all columns from the table:

SELECT *
FROM table_name
WHERE condition;
Enter fullscreen mode Exit fullscreen mode

For example:

output_data = DB.query("SELECT * FROM customers WHERE name = 'anas dew';")

print(output_data)
Enter fullscreen mode Exit fullscreen mode

NOTE : Since you're in a programming language, you'll need to store it in a variable to access it further.

# Output
[(2, 'Anas Dew', 'anas@example.com')]
Enter fullscreen mode Exit fullscreen mode

select statement in quicksqlconnector

You can also use various clauses such as GROUP BY, HAVING, and ORDER BY to further refine your query.

GROUP BY: The GROUP BY clause is used in a SELECT statement to group the results by a specific column or columns. This allows you to perform aggregations (such as COUNT, SUM, AVG, etc.) on groups of data within the result set.

HAVING: The HAVING clause is similar to the WHERE clause, but is used in conjunction with the GROUP BY clause to filter the results of the grouped data. It is used to apply a condition to the grouped data, similar to how the WHERE clause is used to filter the entire result set.

ORDER BY: The ORDER BY clause is used in a SELECT statement to sort the results by a specific column or columns in ascending or descending order. It is usually used after the WHERE and GROUP BY clauses, if they are present in the query.

For example:

SELECT
  Country,
  COUNT(Country)
FROM
  Customers
GROUP BY
  Country
HAVING
  COUNT(Country) > 10
ORDER BY
  Country ASC;

Enter fullscreen mode Exit fullscreen mode

This statement retrieves the Country column and counts the number of rows in the Customers table for each country. It then groups the results by country and filters the results to only include countries with more than 10 customers. Finally, it sorts the results by country in ascending order.

Using WHERE clauses and operators to filter data

The WHERE clause is used in a SELECT statement to filter the results based on specific criteria. It is used to specify a condition that must be met for a row to be included in the result set.

There are several operators that can be used in the WHERE clause to filter data.

  • = : equal to
  • : greater than
  • < : less than
  • = : greater than or equal to
  • <= : less than or equal to
  • <> or != : not equal to
  • BETWEEN : between a specific range
  • IN : within a set of values
  • LIKE : matching a specific pattern

For example:

SELECT * FROM Products WHERE Price > 50;
Enter fullscreen mode Exit fullscreen mode

This statement retrieves all columns (*) from the Products table where the Price column is greater than 50.

SELECT * FROM Customers WHERE Country IN ('USA', 'Canada', 'Mexico');
Enter fullscreen mode Exit fullscreen mode

This statement retrieves all columns (*) from the Customers table where the Country column is either 'USA', 'Canada', or 'Mexico'.

SELECT * FROM Employees WHERE FirstName LIKE '%a%';
Enter fullscreen mode Exit fullscreen mode

This statement retrieves all columns (*) from the Employees table where the FirstName column contains the letter 'a'.

SELECT * FROM Orders WHERE OrderDate BETWEEN '2022-01-01' AND '2022-12-31';
Enter fullscreen mode Exit fullscreen mode

This statement retrieves all columns (*) from the Orders table where the OrderDate column is between the dates of January 1st, 2022 and December 31st, 2022.

Sorting data using ORDER BY

The ORDER BY clause is used in a SELECT statement to sort the results by a specific column or columns in ascending or descending order. It is usually used after the WHERE and GROUP BY clauses, if they are present in the query.

To sort the results in ascending order, use the ASC keyword. To sort the results in descending order, use the DESC keyword. If no keyword is specified, the default is ASC.

For example:

SELECT * FROM Customers ORDER BY LastName ASC;
Enter fullscreen mode Exit fullscreen mode

This statement retrieves all columns (*) from the Customers table and sorts the results by the LastName column in ascending order.

SELECT * FROM Products ORDER BY Price DESC;
Enter fullscreen mode Exit fullscreen mode

This statement retrieves all columns (*) from the Products table and sorts the results by the Price column in descending order.

SELECT * FROM Employees ORDER BY Department ASC, LastName DESC;
Enter fullscreen mode Exit fullscreen mode

This statement retrieves all columns (*) from the Employees table and sorts the results first by the Department column in ascending order, and then by the LastName column in descending order.


Next Steps

This was all that you need to get started with MySQL. Now your next step is to practice yourself and make some projects. Below are few MySQL projects to build right now.

Here are a few ideas for projects using Python and MySQL

  • A simple program that connects to a MySQL database and performs a SELECT query to retrieve data. The program could then display the results in a text-based user interface.

  • A program that allows a user to insert new rows into a MySQL database table via a simple user interface.

  • A program that generates reports based on data stored in a MySQL database. For example, you could create a program that generates reports on the most popular products or customers.

  • A program that imports data from a CSV file into a MySQL database.

  • A program that performs a full-text search on a MySQL database.

Top comments (0)