实验一
1-1.查询员工的姓名、职务和薪水
lect employeeName,headShip,salary
from employeerobert holley
图1-1
2. 查询名字中含有“有限”的客户姓名和所在地
lect CustomerName,address
from Customer
alerter
where CustomerName like '%有限%'
图1-2
test13. 查询出姓“张”并且姓名的最后一个字为“梅”的员工。
lect *
from employee
where employeeName like '张%梅'
图1-3
4. 查询住址中含有上海或南昌的女员工,并显示其姓名、所属部门、职称、住址,其中性别用“男”和“女”显示
逗号的作用SELECT employeeName,department,address,
isnull (convert(char(10),birthday,120),'不详')出生日期,
ca x when 'M'then '男'
when 'F'then'女'
end as 性别
from employee
where (address like '%上海%'or address like '%南昌%')and x='F'
图1-4
5. 查询出职务为“职员”或职务为“科长”的女员工的信息
lect *
from employee
where (headship='职员' or headship='科长') and x='F'
图1-5
6. 选取编号不在“C20050001”和“C20050004”的客户编号、客户名称、客户地址。
Select *
from Customer
where CustomerNo not in ( 'C20050001' ,'C20050004')
拉丁语翻译
图1-6
图1-6
绿茶英语
7. 在订单明细表Ordermaster中挑出销售金额大于等于5000元的订单。
update ordermaster arch met ordersum=sum2
from ordermaster a,(lect orderno,sum(quantity*price)sum2
from orderdetail
group by orderno)b
where a.orderno=b.orderno
Select *
From ordermaster
Where ordersum>=’5000’
保养卵巢瑜伽图1-7
8. 选取订单金额最高的前10%的订单数据
SELECT TOP 10 PERCENT *
from orderdetail order by price DESC
图1-8
9. 计算一共销售了几种商品
SELECT COUNT(DISTINCT productno)as 种类
from orderDeta
图1-9
brief是什么意思10.计算orderDetail表中每种商品的销售数量、平均价格和总销售量金额,并且依据销售金额由大到小输出。
一周年英文
SELECT productno 商品种类,count(*)quantity,avg (price)平均价格,sum(quantity*price)金额
from orderDetail
group by productno
order by 金额desc
图1-10
11. 按客户编号统计每个客户2008年2月的订单总金额。
lect customerno,ordersum
from ordermaster
where year(orderDate)=2008 and month(orderDate)=2
图1-11
12.统计至少销售了10件以上的商品编号和销售数量。
lect productno 商品编号,quantity 商品数目
from orderdetail
where quantity>=10
图1-12
13. 统计在业务科工作且在1973年或1967年出生的员工人数和平均工资
lect count(*) 人数,avg(salary) 平均工资