select it.iname 商品名稱,itc.cname 商品類別名稱 from item it join itemcategory itc on
it.cid=itc.id;
it 為item的別名 ,提高執行速度,itc為itcategory的別名。
商品名稱為iname的別名,列的別名,影響執行速度。
select table_name from user_tables;
select * from user_tables;
--select * from item;
--內連線
select * from item it join itemcategory itc on it.cid=itc.cid;
select * from item it,itemcategory itc where it.cid=itc.cid;
--外連線
----左外連線
----右外連線
----完全連線
---交叉連線
--給表和列起別名
select it.iname,itc.cname from item it join itemcategory itc on it.cid=itc.id;
--11
select count(*) from item;
--6select count(*) from itemcategory;
--left join:先做內連線,再加上左表裡剩餘的記錄
--11
select * from item it left join itemcategory itc on it.cid=itc.id;
select * from itemcategory itc left join item it on it.cid=itm.id;
--right join:先做內連線,再加上右表裡剩餘的記錄
select * from item it right join itemcategory itc on it.cid=itc.id;
select * from itemcategory itc right join item it on it.cid=itm.id;
--cross join:笛卡爾積
select * from item cross join itemcategory;
--查詢每乙個員工選修的職位
select * from staff st join fund_non fu on st.cid=fu.id;
select sname,jname from staff st join staff_jobs sta on st.id=sta.sid join jobs jo on sta.cid=jo.id;
課堂筆記2
一 makefile make命令執行時,需要乙個makefile檔案,以告訴make命令需要怎樣去編譯和鏈結程式。格式 target 目標 dependency 依賴 tab字元 command 命令 例 hello hello.c gcc hello.c o hello 通過hello.o和pr...
c 課堂筆記(2)
include include includeusing namespace std int main 1計數控制的迴圈 2條件控制的迴圈 1當型迴圈結構,表示當條件p成立 為真 時反覆執行a操作,直到條件p不成立 為假 時迴圈結束 2直到型迴圈結構,表示先執行a操作,再判斷條件p是否成立 為真 若...
CSS 課堂筆記2
css 層疊樣式表,是給標籤 html 新增樣式的 鍵對值 屬性 屬性值 備註 html超文字標記語言,是標記語言,不是程式語言,說白了就是標籤。標籤 標籤名 一 文字的樣式 text 1 顏色 color red 2 文字對齊方式 text align left 左對齊 text align ce...