A.
select sno,sname,sdept from student where sname like '王_民';
B.
select sno,sname,sdept from student where sname like '王%民';
C.
select sno,sname,sdept from student where sname like '王%民%';
D.
select sno,sname,sdept from student where sname like '王_民%';