SQLServer怎么查询某字段中第一个字符为数字的记录

2024-11-25 05:21:38
推荐回答(1个)
回答1:

select * from table where str like '[0-9]%'

这样可以不?