查询课堂练习题及答案
1.查询Goods表中所有商品的详细信息。
.lect * from goods
2.查询Goods表中所有商品的商品号、商品名称和商品总额,并以汉字标题显示列名。
lect g_id 商品号,g_name 商品名称,g_price*g_number 商品总额
from goods
3.查询Goods广州瑜伽教练培训表中 “热点”商品的详细信息。
4.查询Goods表中商品类别为“01”,商品单价在2500元以上的商品的详细信息。
5.查询Goods表中所有商品中“三星”的商品的详细信息。
6.查询Customers中 “湖南”省的所有男性的会员或者是年龄在30岁以下的会员的会员号、会员名称、性别、籍贯和年龄。
Select c_id,c_name,c_gender, year(getdate())-year(c_birth) as nuclearenergy年龄
From customers
Where (c_gender='男' and c_address like '湖南%' ) or (year(getdate())-year(c_birth) )<30
7.查询Customers中所有年龄在20~25岁之间的会员的名称、籍贯和年龄
Select c_name,c_address, year(getdate())-year(c_birth) as 年龄
From customers
Where (year(getdate())-year(c_birth)) between 20 and 25
8.查询Customers中不是来自“湖南株洲”和“湖南长沙”两地会员的详细信息。
9.查询Customers中姓“黄”且名字中只有两个汉字的会员的会员名、真实姓名、电话和电子邮箱。
10.查询Customers中最先注册的10%的会员详细信息
lect top 10 percent * from customers
11.在Goods表中,知道一个商品的商品名称中包含有“520”字样,要求查询该商品的商品号、商品名称、商品单价和商品折扣。
12.在Goods表中查询暂时没有商品图片的商品信息。
13.在Goods表中需要了解价格在2500元以上的商品的商品号、商品名称、商品类别号和商品单价信息,并要求按类别号升序排列;如果是同一类别的商品,则按价格降序排列。
Select g_id,g_name,t_id,g_price from goods
Where g_price>2500
order by t_id,g_price desc
14.在Goods表中需要了解每一类别的商品总数。
Select t_id,count(*) as 数量
rouFrom goods
Group by t_id
15.在OrderDetail表中需要了解每一个订单的总金额,并根据订单总额进行升序排列。
Select o_id 订单编号,sum(d_price*d_number) as 青岛雅思培训总金额
From orderdetails
Group by o_id
order by sum(d_price*d_number)
16.在alevinOrderDetail表中需要了解订单总额大于5000的订单信息,并按升序排列。
17.统计Customers表中男、女会员的总人数。
lect c_gender,count(*)as 人数
from customers
group by c_gender
18.统计Orders表中每一会员的订单总额,并显示大于平均总额的会员编号和订单总额。
Select c_id 会员号,sum(o_sum) 订单总额
From orders
dragon danceGroup by c_id
Having sum(o_sum)>(lect avg(o_sum) from orders)
19.统计Ordersreciprocated表中每一天的订单总额,并根据订单总额进行降序排列。
Select o_date,sum(o_sum) 订单总额
From orders
Group by o_date
Order by 订单总额 desc
3. lect * from goods where g_status='热点‘
4. lect * from goods where t_id='01' and g_price>2500
5. lect * from goods where g_name like '三星%'
6.
或者
Select c_id,c_name,c_gender, (year(getdate())-year(c_birth) )as 年龄
From customers
Where (c_gender='男' and left(c_address,2)='湖南') or (year(getdate())-year(c_birth) )<30
注意:写成year(getdate()-c_birth) as年龄 得不到年龄值,是年份值
Getdate()-c_birth 得到的是日期时间值
可以写成datediff(year,getdate(),c_birth) as 年龄
7.
8.Select * from customers
where left(c_address,4) not in (‘湖南株洲’,‘湖南长沙’)
此答案不是唯一答案until是什么意思
或者
Select * from customers wo
raining sunshinewhere c_address not like '湖南株洲%'
and
c_address not like'湖南长沙%'
或者
Select * from customers
where c_address not in (‘湖南株洲市’,‘湖南长沙市’)
或者
Select * from customers