select查询语句的问题!
发布网友
发布时间:2022-04-14 14:07
我来回答
共1个回答
热心网友
时间:2022-04-14 15:37
1) select * from books
2) select * from books,BookType where books.tid=BookType.id (多表查询,两表间一定要有关系,如 books.tid=BookType.id)
3) select 书名,销售价格 from books
4) select 书名,销售价格 from books where 编号='YBZT0003'
5) select 编号 as 图*录编号 ,书名 as 图书名 ,进货价格 as 进货价格 from books where 销售价格=20
6) select 书名 as 名为图书的书名,销售价格 as 图书的销售价格 where 销售价格>=10 and 销售价格<=50
7) select * from books where 书名 like '*中*'
8) select * from books where 销售价格>=10 and 销售价格<=50 and 出版社 like '*人*'