我需要在我的数据库中匹配2个区号 区号为214和927 我正在使用LIKE条款
select * test where phone like "*972*"
我相信如果972在电话号码的任何地方都会匹配。我需要972才能与区号匹配。
手机格式可以是(###)### - #### 或##########
这可以在访问中进行吗?
答案 0 :(得分:1)
尝试:
select * from test where left(phone, 3) = "972" -- for ########## format
或者:
select * from test where left(phone, 5) = "(972)" -- for (###) ### - #### format