判断一个数可以被10整除
比如:
20
21
21
得出20 可以被10 整除
[解决办法]
select * from (select 20 x union select 21 union select 22) a where x %10=0
发布时间: 2012-01-03 22:16:07 作者: rapoo
判断一个数可以被10整除
比如:
20
21
21
得出20 可以被10 整除
[解决办法]
select * from (select 20 x union select 21 union select 22) a where x %10=0