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