db_host
=
''
for
host
in
hosts
:
mysql
=
pymysql
.
connect
(
host
=
host
,
user
=
user
,
password
=
password
,
port
=
port
)
cursor
=
mysql
.
cursor
(
)
for
dbtbs
in
tables
:
db_name
=
dbtbs
.
split
(
'.'
)
[
0
]
tb_name
=
dbtbs
.
split
(
'.'
)
[
1
]
sql
=
"select count(1) from information_schema.tables where TABLE_SCHEMA = '{}' and TABLE_NAME = '{}' "
.
format
(
db_name
,
tb_name
)
cursor
.
execute
(
sql
)
count
=
cursor
.
fetchall
(
)
[
0
]
[
0
]
if
count
>
0
:
db_host
=
host
print
(
"----该表{}.{}在这台{}服务器上---"
.
format
(
db_name
,
tb_name
,
host
)
)
create_sql
=
"show create table `{}`.`{}` "
.
format
(
db_name
,
tb_name
)
cursor
.
execute
(
create_sql
)
print
(
"\r\n -------------{}.{}---建表开始-------------- "
.
format
(
db_name
,
tb_name
)
)
print
(
cursor
.
fetchall
(
)
[
0
]
[
1
]
)
print
(
"-------------{}.{}---建表结束--------------\r\n "
.
format
(
db_name
,
tb_name
)
)
cursor
.
close
(
)
mysql
.
close
(
)
应用场景:需要获取mysql多表跨库建表语句时import pymysqltables = [""]hosts = [""]user = ''password = ""port = db_host = ''for host in hosts: mysql = pymysql.connect(host=host, user=user, password=password, port=port) cursor = mysql.cursor() for dbtbs in
今天使用py3里面的py
mysql
库对
MySQL
数据库进行DDL,DML语句的操作,分别为创
建
表,修改表,删除表,对表的数据进行增删改查,SQL语句都是举的简单例子,具体多种格式可去自行学习SQL语句
首先是DDL语句
①下面是DDL对表结构的修改
alter table [表名] modify [字段名] [新属性] #修改原有属性
alter table [表名] change [老字段...
1.了解索引
1、索引是什么?
在
MySQL
中,索引是一种增强式的存在,这表示即使没有索引,
MySQL
的功能并不会受到影响。索引是对数据库表中一列或多列的值进行排序的一种结构(B树),使用索引可快速访问数据库表中的特定信息。
2、为什么要使用索引?
就是提高查询性能。
3、有哪些索引?
主要分为聚集索引(CLUSTERED INDEX)和非聚集索引(NONCLUSTERED INDEX)两种,聚集索引指的是一列或多列的物理顺序和逻辑顺序是一致的,一个数据库表只能有
由于公司都是使用 linux 跳板机连接
mysql
, 而某个项目又没有测试环境, 于是只能通过跳板机查看某张表的详细信息. 具体语句如下
这里以查看 ups_auth_info 表为例
# \G 表示以垂直形式查看结果
show create table ups_auth_info \G;
import sys
file_name = sys.argv[1]
with open(file=file_name, mode=‘r’, encoding=‘utf-8’) as f:
all_line=f.readlines()
flag = 0
sql_name = ‘’
if not os.path.isdir(’./sql’):
os.mk...
rows = []
for row in worksheet.iter_rows(min_row=2):
rows.append([cell.value for cell in row])
# 生成
建
表语
句
table_name = 'my_table'
sql = f'CREATE TABLE {table_name} (\n'
for header in headers:
sql += f'\t{header} VARCHAR(255),\n'
sql = sql[:-2] + '\n);'
print(sql)
这个示例代码假设 Excel 文件中第一行是表头,从第二行开始是数据。可以根据实际情况调整代码。同时,这个示例代码只是生成了一个简单的
建
表语
句,如果需要更复杂的
建
表语
句,需要根据实际需要进行修改。