1樓:阿肆肆肆
純手打,望採納!
(1)select * from department
(2) select * from employee where ezipcode = '210010' order by eno desc,dno
(3) select ename,etel,email from employee where dno = (select dno from department where dname = '經理辦公室' )
(4)select * from employee
(5) select * from employee where ebirth between '1985-06-02' and getdate()
(6) select ename,etel,email from employee where eno in
(select eno from salary where salary > 3000 )
2樓:alex老夏
1.select * from department;
2.select * from employee where ezipcode='210010' order by eno desc,dno asc;
3.select ename,etel,email from department a join employeeb on a.dno=b.
dno where a.dname='經理辦公室';
4.select * from employee;
5.select * from employee where ebirth<'1985-06-01' order by eno asc,dno desc;
sql不會寫了
3樓:匿名使用者
方法太多了,效能需要去測。
第一個可以,
1.選擇查詢最大和最小的日期
2.直接top1升序降序 union
會編寫sql語句的幫忙寫下
4樓:
update card set password = replace(replace(password, 'o','0' ), 'i','1')
5樓:匿名使用者
update card
set password=replace(replace(password,'o','0'),'i','1')
SQL基礎問題,用SQL語句完成下列問題。
一樓的很正確 把語句也都寫出來了。在這我只是給解釋一下。create table tb user 建立一個表 create table 表名。userid int not null,列明userid 資料型別 int 整數 null not null 指該列是否接受空值 null表示接受。其它列依次...
常用的sql語句,常見的SQL語句有哪些
1 ddl 2 dml select語句 update語句 insert into語句 常用的就這3中,但是要學精確不容易 蒐集sql常用的操作語句 常用的也不只這些 1 說明 建立資料庫 create database database name 2 說明 刪除資料庫 drop database ...
關於SQL語句的問題。多謝,關於SQL語句的一個問題。多謝!
利用b表更新a表,全部覆蓋 update a set a.name b.name,a.age b.age from a,b where a.id b.id update a set a.name b.name,a.age b.age from a a,b b where a.id b.id 表結構設...