Python & MySQL Examples
- Python & MySQL - Connect Database
- Python & MySQL - Create Database
- Python & MySQL - Drop Database
- Python & MySQL - Select Database
- Python & MySQL - Create Tables
- Python & MySQL - Drop Tables
- Python & MySQL - Insert Records
- Python & MySQL - Select Records
- Python & MySQL - Update Records
- Python & MySQL - Delete Records
- Python & MySQL - Where Clause
- Python & MySQL - Like Clause
- Python & MySQL - Sorting Data
- Python & MySQL - Using Joins
- Python & MySQL - Performing Transactions
- Python & MySQL - Handling Errors
Python & MySQL Useful Resources
Python MySql - Create Tables
Python uses c.execute(q) function to create a table where c is cursor and q is the query to be executed.
Syntax
# execute SQL query using execute() method. cursor.execute(sql)
| Sr.No. | Parameter & Description |
|---|---|
| 1 | $sql Required - SQL query to create a table. |
Example - Creating Table
Try the following example to create a table −
Copy and paste the following example as main.py −
main.py
import mysql.connector
# Open database connection
db = mysql.connector.connect(host="localhost",user="root",password="root@123", database="TUTORIALS")
# prepare a cursor object using cursor() method
cursor = db.cursor()
sql = """CREATE TABLE tutorials_tbl(
tutorial_id INT NOT NULL AUTO_INCREMENT,
tutorial_title VARCHAR(100) NOT NULL,
tutorial_author VARCHAR(40) NOT NULL,
submission_date DATE,
PRIMARY KEY ( tutorial_id )); """;
# execute SQL query using execute() method.
cursor.execute(sql)
print('tutorials_tbl created')
# disconnect from server
db.close()
Output
Execute the main.py script using python and verify the output.
tutorials_tbl created
Advertisements