1.需求:参数
1)当参数为0 则查询全部
2)当参数为1 则查询字段全部为1的数据
3)当参数为2 则查询字段全部为2的数据
2.sql语句格式
--当参数 0 全部 1 类型1 2 类型2 select * from userbase where 参数=0 or utype = 参数3.当参数为0,0=0为真,则查询全部,当参数不为0,参数!=0,为假,不查询,当utype=参数,则查询where utype=参数的全部数据
本文共 265 字,大约阅读时间需要 1 分钟。
1.需求:参数
1)当参数为0 则查询全部
2)当参数为1 则查询字段全部为1的数据
3)当参数为2 则查询字段全部为2的数据
2.sql语句格式
--当参数 0 全部 1 类型1 2 类型2 select * from userbase where 参数=0 or utype = 参数3.当参数为0,0=0为真,则查询全部,当参数不为0,参数!=0,为假,不查询,当utype=参数,则查询where utype=参数的全部数据
转载于:https://my.oschina.net/snowbobo/blog/414894