如何使用SQL语句把字符字段里的数字筛选出来

2024-12-27 20:01:00
推荐回答(1个)
回答1:

可以参考使用如下写法
如果要全部数据则可以

select * from table T1 where 字段 = (select max(字段) from table T2 where T1.字段2 = T2.字段2)

select * from table T1 where not exists(select * from table T2 where T1.字段2 = T2.字段2 and T1.字段 < T2.字段

如果只是数据行数则可以
select count(distinct 字段)from table