判断一个数可以被10整除比如:202121得出20可以被10整除[解决办法]select * from (select 20 x union selec
判断一个数可以被10整除
比如:
20
21
21
得出20 可以被10 整除
[解决办法]
select * from (select 20 x union select 21 union select 22) a where x %10=0
判断一个数可以被10整除
比如:
20
21
21
得出20 可以被10 整除
[解决办法]
select * from (select 20 x union select 21 union select 22) a where x %10=0