0
我有名字EMP,DEPT兩個表的組合,現在我需要聲明的結合意味着表emp的我有名字EMP,部分三個表,現在鍵入我需要聲明
列
empid | deptid | fulltime | parttime | contracttime
dept表
section id | dept id
等一些列作爲n非常需要。
現在emp表:
empid | dept id | fulltime | parttime | contrattime
----------------------------------------------------
1 | 1 | 0 | 0 | 1
2 | 1 | 1 | 1 | 0
等等都在那裏,而且在dept表 有7排像 部分ID和部門ID如下
1 1 2 1 3 1 4 1 5 1 6 1 7 1這些現在我想如果列 全職兼職時間
if 0 0 1 then it should go to section id 1 if 1 1 0 then section id 2 if 1 1 1 then section id 3 if 1 0 1 then section id 4 if 0 1 1 then section id 5 if 1 0 0 then section id 6 if 0 1 0 then section id 7
你試過什麼嗎? –
查詢中的IF語句是[CASE](http://www.tizag.com/sqlTutorial/sqlcase.php) – winkbrace