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簡單查詢語句
greate table insert selce filetad,name,calss,form student sql簡單查詢語句 1 首先開啟資料庫,建立好表。2 然後查詢全體教師的教師號 姓名 職稱,並分別為三列指定別名 教師號 姓名 職稱,如下圖所示。3 查詢結果如下圖所示。4 接著查詢所...
SQL高手請進幫幫忙sql語句怎麼編寫批處理檔案?
你可以事先把sql語句寫在txt中,再把字尾名改為sql的檔名在放在你要執行的位置就可以了。在osql命令後加一個引數 i 載入一個外部的sql語句檔案!如何製作執行sql語句的批處理檔案 開啟記事本 寫入多行命令 然後儲存為。bat 檔案即可比如這是一個很簡單的批處理的原文。copy c abc ...
sql語句中as的意思是什麼,SQL語句中AS是什麼意思?
冼染周冬 as一般用在兩個地方,一個是query的時候,用來重新指定返回的column 名字如 一個table 有個column叫 id,我們的query是 select idfrom table1.但是如果你不想叫id了,就可以重新命名,如叫systemid 就可以這樣寫 select idas ...