A. select * from user where username = '凤'; B. select * from user where username like '%凤%'; C. select * from user where username like '_凤_'; D. select * from user where username like '凤';
A. % B. * C. _ D. ?
A. select * from student where name = null; B. select * from student where name link null; C. select * from student where name = 'null'; D. select * from student where name is null;
AND B. OR C. NOT D. 以上都不对
A. 对 B. 错