Python mit MySQL: Verbinden, Datenbank erstellen, Tabelle, Einfügen (Beispiele)

Inhaltsverzeichnis:

Anonim

Um mit MySQL unter Verwendung von Python arbeiten zu können, müssen Sie über SQL-Kenntnisse verfügen

Bevor wir tief tauchen, lassen Sie uns verstehen

Was ist MySQL?

MySQL ist eine Open-Source-Datenbank und eine der besten Arten von RDBMS (Relational Database Management System). Mitbegründer von MySQLdb ist Michael Widenius, und auch der Name MySQL leitet sich von der Tochter von Michael ab.

So installieren Sie MySQL

Installieren Sie MySQL unter Linux / Unix:

Laden Sie das RPM-Paket für Linux / Unix von der offiziellen Website herunter: https://www.mysql.com/downloads/

Verwenden Sie im Terminal den folgenden Befehl

rpm -i 
Example rpm -i MySQL-5.0.9.0.i386.rpm

Linux einchecken

mysql --version

Installieren Sie MySQL unter Windows

Laden Sie die MySQL-Datenbank exe von der offiziellen Website herunter und installieren Sie sie wie gewohnt unter Windows. In diesem Tutorial finden Sie eine schrittweise Anleitung

Installieren Sie die MySQL Connector Library für Python

Für Python 2.7 oder niedriger installieren Sie mit pip wie folgt:

pip install mysql-connector

Für Python 3 oder eine höhere Version installieren Sie Pip3 wie folgt:

pip3 install mysql-connector 

Testen Sie die MySQL-Datenbankverbindung mit Python

Um die Datenbankverbindung hier zu testen, verwenden wir den vorinstallierten MySQL-Connector und übergeben Anmeldeinformationen an die connect () -Funktion wie Host, Benutzername und Passwort.

Syntax für den Zugriff auf MySQL mit Python:

import mysql.connectordb_connection = mysql.connector.connect(host="hostname",user="username",passwd="password")

Beispiel,

import mysql.connectordb_connection = mysql.connector.connect(host="localhost",user="root",passwd="root")print(db_connection)

Ausgabe:

Hier zeigt die Ausgabe die erfolgreich hergestellte Verbindung.

Erstellen einer Datenbank in MySQL mit Python

Die Syntax zum Erstellen einer neuen Datenbank in SQL lautet

CREATE DATABASE "database_name"

Jetzt erstellen wir eine Datenbank mit Python in MySQL

import mysql.connectordb_connection = mysql.connector.connect(host= "localhost",user= "root",passwd= "root")# creating database_cursor to perform SQL operationdb_cursor = db_connection.cursor()# executing cursor with execute method and pass SQL querydb_cursor.execute("CREATE DATABASE my_first_db")# get list of all databasesdb_cursor.execute("SHOW DATABASES")#print all databasesfor db in db_cursor:print(db)

Ausgabe:

Hier oben zeigt das Bild, dass die Datenbank my_first_db erstellt wurde

Erstellen Sie mit Python eine Tabelle in MySQL

Erstellen wir eine einfache Tabelle "student" mit zwei Spalten.

SQL-Syntax:

CREATE TABLE student (id INT, name VARCHAR(255))

Beispiel:

import mysql.connectordb_connection = mysql.connector.connect(host="localhost",user="root",passwd="root",database="my_first_db")db_cursor = db_connection.cursor()#Here creating database table as student'db_cursor.execute("CREATE TABLE student (id INT, name VARCHAR(255))")#Get database table'db_cursor.execute("SHOW TABLES")for table in db_cursor:print(table)

Ausgabe:

 ('student',) 

Erstellen Sie eine Tabelle mit dem Primärschlüssel

Erstellen wir eine Employee- Tabelle mit drei verschiedenen Spalten. Wir werden einen Primärschlüssel in der ID- Spalte mit der Einschränkung AUTO_INCREMENT hinzufügen

SQL-Syntax,

CREATE TABLE employee(id INT AUTO_INCREMENT PRIMARY KEY, name VARCHAR(255), salary INT(6))

Beispiel,

import mysql.connectordb_connection = mysql.connector.connect(host="localhost",user="root",passwd="root",database="my_first_db")db_cursor = db_connection.cursor()#Here creating database table as employee with primary keydb_cursor.execute("CREATE TABLE employee(id INT AUTO_INCREMENT PRIMARY KEY, name VARCHAR(255), salary INT(6))")#Get database tabledb_cursor.execute("SHOW TABLES")for table in db_cursor:print(table)

Ausgabe:

('employee',) ('student',)

ALTER-Tabelle in MySQL mit Python

Der Befehl Ändern wird zum Ändern der Tabellenstruktur in SQL verwendet. Hier ändern wir die Student- Tabelle und fügen dem ID- Feld einen Primärschlüssel hinzu .

SQL-Syntax,

ALTER TABLE student MODIFY id INT PRIMARY KEY

Beispiel,

import mysql.connectordb_connection = mysql.connector.connect(host="localhost",user="root",passwd="root",database="my_first_db")db_cursor = db_connection.cursor()#Here we modify existing column iddb_cursor.execute("ALTER TABLE student MODIFY id INT PRIMARY KEY")

Ausgabe:

Hier unten sehen Sie, dass die ID- Spalte geändert wurde.

Operation mit MySQL in Python einfügen:

Lassen Sie uns eine Einfügeoperation in der MySQL-Datenbanktabelle ausführen, die wir bereits erstellt haben. Wir werden Daten aus der STUDENT-Tabelle und der EMPLOYEE-Tabelle einfügen.

SQL-Syntax,

INSERT INTO student (id, name) VALUES (01, "John")INSERT INTO employee (id, name, salary) VALUES(01, "John", 10000)

Beispiel,

import mysql.connectordb_connection = mysql.connector.connect(host="localhost",user="root",passwd="root",database="my_first_db")db_cursor = db_connection.cursor()student_sql_query = "INSERT INTO student(id,name) VALUES(01, 'John')"employee_sql_query = " INSERT INTO employee (id, name, salary) VALUES (01, 'John', 10000)"#Execute cursor and pass query as well as student datadb_cursor.execute(student_sql_query)#Execute cursor and pass query of employee and data of employeedb_cursor.execute(employee_sql_query)db_connection.commit()print(db_cursor.rowcount, "Record Inserted")

Ausgabe:

 2 Record Inserted