当前位置: 首页 > 工具软件 > mod_backhand > 使用案例 >

mod函数

后烨煜
2023-12-01

mod(n,m)该函数返回n除以m的余数

需求:

分别找出所有影片 id 为奇数 ,偶数的影片,表名为cinema 

idmovieraing
1war8.9
2science9.0
3irish7.3
4house card8.0

 

 

 

 

 

 

输出结果为

idmovieraing
1war8.9
3irish7.3

 

 

 

 

idmovieraing
2science9.0
4house card8.0

 

 

 

 

#输出表中id为奇数的列
select * from cinema where mod(id,2)=1

#输出表中id为奇数的列

select * from cinema where mod(id,2)=0

 

 类似资料: