SQL基礎 備註

2021-06-02 13:41:29 字數 661 閱讀 9155

請寫出在class表中查詢滿足如下條件的記錄的sql語句:

1.返回字段 c_name,c_stu

2返回記錄數:前5條

3.查詢條件:c_stu值 大於30,並且 c_type值 為真,

並且c_name字段值中有「二班」兩個字

4.查詢結果按c_stu 正排序,按c_type倒排序(注:在正排序時請不要省略排 序關鍵字)

selecttop 5 c_name,c_stu from class where c_stu>30 and c_type=true and c_namelike '*二班*'

order by c_stu asc,c_type desc

請寫出在class和stu表中查詢滿足以下條件的記錄的sql語句:①表class中的字段c_id與stu表中的s_cid為關聯字段 ②返回字段

c_name,s_no,s_name ③查詢條件:c_stu欄位大於20,並且s_no第二到第四位是「006」這三個字元的 ④查詢結果按s_no倒排序。

注:因為兩個表中字段沒有重名,因此寫本條語句時欄位名前不用加表名。

select c_name,s_no,s_name from class,stu wherec_id=s_cid and c_stu>20 and s_no like '?006*' order by s_no desc

sql去掉字段所有備註 SQL面試35

有兩個表的表結構如下 表order 訂單 字段 型別備註 idint 主鍵order name varchar 訂單名稱 表order item 訂單項 字段型別 備註item id int主鍵 order id int外來鍵,關聯order表的主鍵 status int狀態 0 失效 1 生效 c...

sql 建立錶帶並備註字段資訊

t workinfo template 工作資訊模板 if object id t workinfo template isnotnulldroptablet workinfo template go createtablet workinfo template workinfo template ...

SQL語句之查詢字段注釋(備註)

select b.name as column name from sys.tables a inner join sys.columns b on b.object id a.object id left join sys.extended properties c on c.major id b...