(1)、列出作者的名、姓、所在城市和洲。先按州的升序排序,再按城市的降序排序。
select au_fname, au_lname, city, state
from authors
order by state asc,city desc;
2)、列出姓不是空值的作者。
select au_id, au_fname, au_lname
from authors
where au_lname <>hull';
3)、列出没有签合同(contract)的图书的书名。
select title_name, contract
from titles
where contract = 0;
4)、列出在2023年1月1日以后出版的图书的书名。
select title_name, pubdate
from titles
where pubdate >=date '2001-01-01';
5)、列出revenue大于1000000元的图书的书名。(这个查询条件要使用算术表达式price*sales)
select title_name,price * sales as "revenue"
from titles
where price * sales > 1000000;
6)、列出**低于20元的传记类图书。
select title_name, type, price
from titles
where type = biography' and price < 20;
7)、列出不居住在加利福利亚(ca),并且姓以字母h到z开头的作者。
select au_fname, au_lname, state
from authors
where au_lname >=h'
and au_lname <=zz'
and state <>ca';
8)、列出居住在纽约州(ny)、科罗拉州(co)或者旧金山市(san francisco)的作者。
select au_fname, au_lname, city, state
from authors
where (state = ny')
or (state = co')
or (city = san francisco');
9)、列出不居住在ca的作者。
select au_fname, au_lname, state
from authors
where not (state = ca');
10)、列出**不低于20元,并且已经售出超过15000册的图书的书名。
select title_name, sales, price
from titles
where not (price < 20)
and (sales > 15000);
11)、列出姓以kel开头的作者。
select au_fname, au_lname
from authors
where au_lname like 'kel%';
12)、列出姓中以ll作为第3个和第4个字符的作者。
select au_fname, au_lname
from authors
where au_lname like '_ll%';
上机2练习答案
listnode typedef listnode linklist linklist head void main 进入主函数 int n,i,b,m,j linklist head listnode malloc sizeof listnode 申请一个空间 头结点 head listnode ...
上机2答案
新上机题二。1 编命令文件求下列联立方程的解。方法一 a 0 4 9 2 0 4 3 7 3 8 5 1 6 7 0 6 b 7 19 11 14 x a b x x 1 y x 2 z x 3 w x 4 方法二 a 0 4 9 2 0 4 3 7 3 8 5 1 6 7 0 6 b 7 19 1...
上机练习答案
答案。1.已知系统传递函数为利用matlab将上述模型表示出来,并将其建立在工作空间中。2.已知系统传递函数为利用matlab将上述模型表示出来。多项式乘积,将两个多项式系数向量相乘conv a,b num 7 2,3 den conv conv conv 1,0,0 3,1 conv 1,2 1,...