1樓:
select * from table_name where 部門= '工程部' and 經理簽字 = 0 and 行政簽字 = 0 and 結單 = 0
union all
select * from table_name where 部門 != '工程部' and 經理簽字 = 1 and 行政簽字 = 0 and 結單 = 0
2樓:
select * from 表 where (部門='工程部' and 經理簽字=0 and 行政簽字=0 and 結單=0) or (部門='其它部門' and 經理簽字=1 and 行政簽字=0 and 結單=0)
3樓:
select * from tbl
where 行政簽字=0 and 結單=0 and ((部門='工程' and 經理簽字=0) or (部門<>'工程' and 經理簽字=1))
4樓:長天孤
select *
from 表名
where 經理簽字=0 and 行政簽字=0 and 結單=0 and 部門='工程' or 經理簽字=1 and 行政簽字=0 and 結單=0
5樓:匿名使用者
select * from 表名
where 行政簽字='0' and 結單='0' and ((部門='工程' and 經理簽字='0') or (部門<>'工程' and 經理簽字='1')
或者select * from 表名
where 行政簽字='0' and 結單='0' and ((部門 like '%工程%' and 經理簽字='0') or (部門 not like '%工程%' and 經理簽字='1')
求一個sql語句。求一個sql寫法
設 表1為mytable1 sl 分類求和後為sl1表2為mytable2 sl 分類求和後為sl2select from select lx sum sl sl1 from mytable1 group by lx a join select lx sum sl sl2 from mytable2...
求一sql查詢語句,題目如圖,求一個SQL查詢語句寫法,有點複雜 高手進
需要5個子查詢,然後用left join select distinct u.username as 使用者名稱,t1.密碼 as 密碼,t2.日期 as 日期,t3.分組 as 分組。from users u left join select distinct username as 使用者名稱,...
sql語句求大神幫助,SQL查詢語句,求大神幫助!
大概明白你的意思。如果你的資料只有三層,並且只是你sql限定的這些資料好辦。select t3.mc,t2.mc t1.mc,t1.from select from sys zdinfo where plsh 2012070900000068 and plsh 2012070900000072 t1...