issues
search
zhengwei1949
/
myblog
个人博客
10
stars
6
forks
source link
数据库课程练习
#142
Open
zhengwei1949
opened
6 years ago
zhengwei1949
commented
6 years ago
练习SQL语句并理解其含义
select * from mytable;
select id,name,birthday,gender,phone from mytable;
select * from mytable order by age desc;
select * from mytable order by age desc limit 0,10;
select * from student join class on student.cid = class.classID;
select * from student inner join class on student.cid = class.classID;
select * from student left join class on student.cid = class.classID;
select * from student right join class on student.cid = class.classID;
select count(*) from mytable;
select avg(age) from mytable;
select max(age) from mytable;
select min(age) from mytable;
insert into mytable values(null,'小明',21,'2011-01-01','男','12345678900');
insert into mytable (name,age,birthday,gender,phone) values('小明,21,'2011-01-01','男','12345678900');
delete from mytable where id = 20;
update mytable set age = 22 where id = 31;
创建数据库名字叫itcast,并在其中创建一个数据库表名字叫order(订单表),字段如下:
商品编号
商品名称
价格
商品分类
销量
是否包邮
图片地址
goods_id
goods_name
price
cat_name
sales
is_post_free
pic_path
说如如下的场景使用了CRUD中的哪一种
注册账号
更新自己信息
注销账号
查看东西
看淘宝上卖什么
参考答案
注册账号 : insert into 表名 (字段列表) values (值列表),(值列表)
更新自己信息:update 表名 set 键=值 where id = ?
注销 : delete from 表名 where id = ?
查看东西:select * from 表名;
看淘宝上卖什么:select
练习SQL语句并理解其含义
创建数据库名字叫itcast,并在其中创建一个数据库表名字叫order(订单表),字段如下:
说如如下的场景使用了CRUD中的哪一种
参考答案