A.select * from orders where ordername is not null; B.select * from orders where ordername<>null; C.select * from orders where ordername is null; D.select * from orders where ordername not is null;
A.可以選出符合某些條件組合的記錄 B.不能選擇出符合條件組合的記錄 C.可以選出符合某些條件的記錄 D.只能選擇出符合某一條件的記錄
A.AND/NOT/OR B.NOT/AND/OR C.OR/NOT/AND D.OR/AND/NOT