Day Task 27: Python MySQL Create a connection to a database Create a database in MySQL Check if a database exist Create a table Check if a table exist Create primary key when creating a table Insert a record in a table Insert multiple rows Get inserted ID Select all records from a table Select only some of the columns in a table Use the fetchone() method to fetch only one row in a table Select with a filter Wildcards characters Prevent SQL injection Sort the result of a table alphabetically Sort the result in a descending order (reverse alphabetically) Delete records from an existing table Prevent SQL injection Delete an existing table Delete a table if it exist Update existing records in a table Prevent SQL injection Limit the number of records returned from a query Combine rows from two or more tables, based on a related column between them LEFT JOIN RIGHT JOIN