實訓單錶查詢

2021-08-21 18:59:00 字數 2597 閱讀 6348

1.customer表

1).查詢所有顧客資訊。

2).查詢姓名和聯絡人相同的顧客資訊

3).查詢所在城市是北京的顧客姓名,顧客位址,顧客所在城市,郵編。

2.product表:

1).查詢所有產品資訊

2).查詢產品名中帶有「小公尺」的商品資訊

3).查詢產品名中以「小」開頭或者產品描述中帶有「玫瑰」的產品資訊

4).查詢**在3000以上的的產品名和單價(使用別名)

5).查詢**在3000以上並且庫存數量在80以上的產品的名字和單價

3.`order`表:

1).查詢所有訂單

2).查詢物品數量大於10的訂單資訊

3).分別使用in和or的方式查詢pid為2和4的商品銷售記錄

4)查詢2016-12-05到2016-12-15之間的訂單詳情(使用兩種方法查詢)

5)查詢訂單編號為4的交易總金額(請使用別名)

4.vendor表:

1).查詢所有**商資訊

2).找出**商位址以a起頭、 以o結尾的所有**商

3).查詢**商位址為空的**商資訊

4).查詢出所有**商的姓名,位址,城市(使用別名)

5.recruit表:

1).查詢所有庫存資訊

2)查詢退貨數量大於10的物品資訊

3)查詢所有的**商編號(需過濾重複行)

1.customer表

1).查詢所有顧客資訊。

2).查詢姓名和聯絡人相同的顧客資訊

3).查詢所在城市是北京的顧客姓名,顧客位址,顧客所在城市,郵編。

2.product表:

1).查詢所有產品資訊

2).查詢產品名中帶有「小公尺」的商品資訊

3).查詢產品名中以「小」開頭或者產品描述中帶有「玫瑰」的產品資訊

4).查詢**在3000以上的的產品名和單價(使用別名)

5).查詢**在3000以上並且庫存數量在80以上的產品的名字和單價

3.`order`表:

1).查詢所有訂單

2).查詢物品數量大於10的訂單資訊

3).分別使用in和or的方式查詢pid為2和4的商品銷售記錄

4)查詢2016-12-05到2016-12-15之間的訂單詳情(使用兩種方法查詢)

5)查詢訂單編號為4的交易總金額(請使用別名)

4.vendor表:

1).查詢所有**商資訊

2).找出**商位址以a起頭、 以o結尾的所有**商

3).查詢**商位址為空的**商資訊

4).查詢出所有**商的姓名,位址,城市(使用別名)

5.recruit表:

1).查詢所有庫存資訊

2)查詢退貨數量大於10的物品資訊

3)查詢所有的**商編號(需過濾重複行)

select * from customer;

select * from customer where cname=ccontact;

select cname,caddress,ccity,czip from customer where ccity='北京';

select * from product;

select * from product where pcname like '%小公尺%';

select * from product where pcname like '小%' or pdesc like '%玫瑰%';

select pcname as 產品名稱,pprice as 單價 from product where pprice>3000;

select pcname,pprice from product where pprice>3000 and pcount>80;

select * from ordera;

select * from ordera where ocount>10;

select * from ordera where pid=2 or pid=4;

select * from ordera where pid in(2,4);

select * from ordera where odate between '2016-12-05' and '2016-12-15';

select * from ordera where odate >='2016-12-05' and odate<= '2016-12-15';

select ocount*oprice as 交易總金額 from ordera where oid=4;

select * from vendor;

select * from vendor where vaddress like 'a%o';

select * from vendor where vaddress is null;

select vname as 姓名, vaddress as 位址, vcity as 城市 from vendor ;

select * from recruit;

select * from recruit where returncount>10;

select distinct vid from recruit;

查詢元素(線性表實訓)

相關知識 由於鍊錶結點都是動態記憶體分配得到的,在記憶體中不是連續儲存,沒法使用二分法之類的演算法來實現資訊檢索,但可以使用順序查詢的方法。順序查詢需要遍歷整個鍊錶,逐個檢查每個結點是否滿足條件。程式中的printlist函式已實現了遍歷功能,可以參照其來實現查詢函式。其中printlist函式的實...

實訓日誌 專案實訓介面文件

具體要求 若正常返回,code為200,msg設為success即可 若出現錯誤,code為錯誤 msg欄位說明錯誤原因。具體對應介面 功能及細節如下 功能介面 引數輸出 說明登入 account login username 使用者名稱 password 密碼 user id用於之後與使用者相關的...

實訓day08實訓日誌

日期 2019年6月 17日 第 8 天 共 10天 實習地點 科技樓423 教學大綱中規定的實習教學內容 實習 目的及要求 4 掌握mvvm設計模式框架開發 5 通過本課程的學習,培養學生觀察 分析 解決問題的能力 6 培養學生嚴肅認真 實事求是的良好作風。任務完成 情況 主要收穫與 體會模仿了美...