経験が浅いので基本的なところから頑張っています。
NULL以外
SELECT ename, job, comm FROM emp WHERE comm IS NOT NULL;
条件複数
select * from table t where (t.col1, t.col2) in ( ("hoge", "fuga"), ("foo", "bar") )
経験が浅いので基本的なところから頑張っています。
NULL以外
SELECT ename, job, comm
FROM emp
WHERE comm IS NOT NULL;
条件複数
select
*
from
table t
where
(t.col1, t.col2) in (
("hoge", "fuga"),
("foo", "bar")
)
コメント