PHP8.1.21版本已发布
vue8.1.21版本已发布
jquery8.1.21版本已发布

sqlserver中将varchar类型转换为int型

原创
2016-06-07 14:57:37 2447浏览

无详细内容 无 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); 
声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。