如何同时列出以210,228,410开头的号码(SQL语言)(50分)

  • 主题发起人 主题发起人 dabaosod
  • 开始时间 开始时间
select * from aa where 电话号码 like '210%' or 电话号码 like '228%' or
电话号码 like '410%'
 
来晚了!:)
dabaosod说的没错,like语句是进行模糊查询
 
到此一游!
 
to aerobull:那样效率不高,在sysbase中可以用

select * from aa where substring(电话号码,0,4) in('210','228')

具体语法忘了。。。。。。
 
select * from table where number in ("210%","228%","410%")
 
多人接受答案了。
 
后退
顶部