sqlserver中将varchar类型转换为int型
程序员文章站
2024-04-02 21:10:04
...
无详细内容 无 select * from yourtable order by cast(yourcol as int); select * from yourtable order by convert(int,yourcol);
select * from yourtable order by cast(yourcol as int); select * from yourtable order by convert(int,yourcol);