2.1 sql语句强化
-- 查询 cate_name 为 '超极本' 的商品名称和价格 select name,price from goods where cate_name='超极本'; -- 显示商品种类 select cate_name from goods group by cate_name; -- 显示每种商品的平均价格 select cate_name,avg(price) from goods group by cate_name; -- 查询所有价格大于平均价格的商品,并且按价格降序排序 selct id,name,price from goods where price > (select round(avg(price), 2) as avg_price from goods) order by price desc; -- 查询每种类型中最贵的电脑信息 select * from goods inner join (select cate_name, max(price) as max_price, min(price) as min_price, avg(price) as avg_price, count(*) from goods group by cate_name )as goods_new_info on goods.cate_name=goods_new_info.cate_name and goods.price=goods_new_info.max_price2.2 商品数据表的操作
-- 1.创建 "商品分类" 表 create table if not exists goods_cates( id int unsigned primary key auto_increment, name varchar(40) not null ); -- 将分组结果写入到goods_cates数据表 insert into goods_cates(name) select cate_name from goods group by cate_name; -- 2.同步表数据 update goods as g inner join goods_cates as c on g.cate_name=c.name set g.cate_name=c.id; -- 3.创建"商品品牌表" -- 创建表同时插入数据 create table goods_brands( id int unsigned primary key auto_increment, name varchar(40) not null )select brand_name as name from goods group by brand_name; -- 4.同步数据 update goods as g inner join goods_brands as b on g.brand_name=b.name set g.brand_name=b.id; -- 5.修改表结构 -- 查看 goods 的数据表结构,会发现 cate_name 和 brand_name对应的类型为 varchar 但是存储的都是数字 alter table goods change cate_name cate_id int unsigned not null, change brand_name brand_id int unsigned not null; -- 6.外键(实际开发很少使用) -- 关键字: foreign key,只有 innodb数据库引擎 支持外键约束 -- 对于已经存在的数据表 如何更新外键约束 alter table goods add foreign key (brand_id) references goods_brands(id); -- 创建表的时候设置外键 create table goods( id int primary key auto_increment not null, name varchar(40) default '', price decimal(5,2), cate_id int unsigned, brand_id int unsigned, is_show bit default 1, is_saleoff bit default 0, foreign key(cate_id) references goods_cates(id), foreign key(brand_id) references goods_brands(id) ); -- 如何取消外键约束 -- 需要先获取外键约束名称,该名称系统会自动生成,可以通过查看表创建语句来获取名称 show create table goods; -- 获取名称之后就可以根据名称来删除外键约束 alter table goods drop foreign key 外键名称;4.1 connection对象
用于建立与数据库的连接创建对象:调用connect()方法 conn=connect(参数列表) 参数host:连接的mysql主机,如果本机是’localhost’参数port:连接的mysql主机的端口,默认是3306参数database:数据库的名称参数user:连接的用户名参数password:连接的密码参数charset:通信采用的编码方式,推荐使用utf8 对象的方法: close()关闭连接commit()提交cursor()返回Cursor对象,用于执行sql语句并获得结果4.2 cursor对象
用于执行sql语句,使用频度最高的语句为select、insert、update、delete获取Cursor对象:调用Connection对象的cursor()方法 cs1=conn.cursor()对象的方法: close()关闭execute(operation [, parameters ])执行语句,返回受影响的行数,主要用于执行insert、update、delete语句,也可以执行create、alter、drop等语句fetchone()执行查询语句时,获取查询结果集的第一个行数据,返回一个元组fetchall()执行查询时,获取结果集的所有行,一行构成一个元组,再将这些元组装入一个元组返回 对象的属性: rowcount只读属性,表示最近一次execute()执行后受影响的行数connection获得当前连接对象5.1 增删改
from pymysql import * def main(): # 创建Connection连接 conn = connect(host='localhost',port=3306,database='jing_dong',user='root',password='mysql',charset='utf8') # 获得Cursor对象 cs1 = conn.cursor() # 执行insert语句,并返回受影响的行数:添加一条数据 # 增加 count = cs1.execute('insert into goods_cates(name) values("硬盘")') #打印受影响的行数 print(count) count = cs1.execute('insert into goods_cates(name) values("光盘")') print(count) # # 更新 # count = cs1.execute('update goods_cates set name="机械硬盘" where name="硬盘"') # # 删除 # count = cs1.execute('delete from goods_cates where id=6') # 提交之前的操作,如果之前已经之执行过多次的execute,那么就都进行提交 conn.commit() # 关闭Cursor对象 cs1.close() # 关闭Connection对象 conn.close() if __name__ == '__main__': main()5.2 查询一行数据
from pymysql import * def main(): # 创建Connection连接 conn = connect(host='localhost',port=3306,user='root',password='mysql',database='jing_dong',charset='utf8') # 获得Cursor对象 cs1 = conn.cursor() # 执行select语句,并返回受影响的行数:查询一条数据 count = cs1.execute('select id,name from goods where id>=4') # 打印受影响的行数 print("查询到%d条数据:" % count) for i in range(count): # 获取查询的结果 result = cs1.fetchone() # 打印查询的结果 print(result) # 获取查询的结果 # 关闭Cursor对象 cs1.close() conn.close() if __name__ == '__main__': main()5.3 查询多行数据
from pymysql import * def main(): # 创建Connection连接 conn = connect(host='localhost',port=3306,user='root',password='mysql',database='jing_dong',charset='utf8') # 获得Cursor对象 cs1 = conn.cursor() # 执行select语句,并返回受影响的行数:查询一条数据 count = cs1.execute('select id,name from goods where id>=4') # 打印受影响的行数 print("查询到%d条数据:" % count) # for i in range(count): # # 获取查询的结果 # result = cs1.fetchone() # # 打印查询的结果 # print(result) # # 获取查询的结果 result = cs1.fetchall() print(result) # 关闭Cursor对象 cs1.close() conn.close() if __name__ == '__main__': main()