数据库中有一张表名称为Student,有列Name,Age,IDCard,Sex。要
8 查阅
Select * From Student Where Name Like '杨%'
Select * From Student Where Name Like "杨%"
Select * From Student Where Name Like '%杨'
Select * From Student Where Name = '杨%'
参考答案: