Computer >> Máy Tính >  >> Lập trình >> Python

Tạo bảng cơ sở dữ liệu bằng Python

Khi kết nối cơ sở dữ liệu được thiết lập, chúng tôi đã sẵn sàng tạo bảng hoặc bản ghi vào bảng cơ sở dữ liệu bằng cách sử dụng phương thức thực thi của con trỏ đã tạo.

Ví dụ

Hãy để chúng tôi tạo bảng Cơ sở dữ liệu NHÂN VIÊN -

#!/usr/bin/python
import MySQLdb
# Open database connection
db = MySQLdb.connect("localhost","testuser","test123","TESTDB" )
# prepare a cursor object using cursor() method
cursor = db.cursor()
# Drop table if it already exist using execute() method.
cursor.execute("DROP TABLE IF EXISTS EMPLOYEE")
# Create table as per requirement
sql = """CREATE TABLE EMPLOYEE (
   FIRST_NAME CHAR(20) NOT NULL,
   LAST_NAME CHAR(20),
   AGE INT,
   SEX CHAR(1),
   INCOME FLOAT )"""
cursor.execute(sql)
# disconnect from server
db.close()