Python 连接mysql数据库进行操

2023年 8月 12日 58.8k 0

1.Mysqldb 模块是用于python链接mysql数据库的接口,默认是没有安装的

[root@Python ~]# yum  install  Mysql-python   -y

2.创建python脚本

[root@python ~]# cat mysql.py 

#!/usr/bin/env python

#-*- coding: UTF-8 -*-

import MySQLdb as mysql  #导入MySQLdb模块

db=mysql.connect(user='root',passwd='Centos',db='test',host='localhost')  #连接数据库

cursor=db.cursor() #创建游标对象

sql='create table test(id int,name varchar(8));' #创建表

cursor.execute(sql) #执行sql语句

db.close() #关闭连接

3.执行脚本,进库查看是否成功

[root@python ~]# mysql -uroot -pcentos

mysql> use test;

Database changed

mysql> show tables;

+----------------+

| Tables_in_test |

+----------------+

| test           |

+----------------+

1 row in set (0.00 sec)

mysql> desc test;

+-------+------------+------+-----+---------+-------+

| Field | Type       | Null | Key | Default | Extra |

+-------+------------+------+-----+---------+-------+

| id    | int(11)    | YES  |     | NULL    |       |

| name  | varchar(8) | YES  |     | NULL    |       |

+-------+------------+------+-----+---------+-------+

2 rows in set (0.00 sec)

相关文章

Oracle如何使用授予和撤销权限的语法和示例
Awesome Project: 探索 MatrixOrigin 云原生分布式数据库
下载丨66页PDF,云和恩墨技术通讯(2024年7月刊)
社区版oceanbase安装
Oracle 导出CSV工具-sqluldr2
ETL数据集成丨快速将MySQL数据迁移至Doris数据库

发布评论