摘要:
# ### python 操作mysql 1 # ### 1.基本语法 2 # (1) 创建连接 host user password database 这四个参数必须写 3 conn = pymysql.connect(host="127.0.0.1",user="root",password=" 阅读全文
摘要:
# ### part1 单表查询# sql 查询语句的完整语法 ''' select .. from .. where .. group by .. having .. order by .. limit .. ''' # 一.where 条件的使用 """功能:对表中的数据进行筛选过滤""" "" 阅读全文