TP5多条件查询怎么写
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了TP5多条件查询怎么写相关的知识,希望对你有一定的参考价值。
查询条件:username=123 或 email=123 或 phone=3 and password=456
自己写了半天也没写出来,要求用TP5最简单的写法
查询条件:username=123 或 email=123 或 phone=123 AND password=456
Db::table('user_table')->where('password','=','456')->where('username|email|phone','=','123')->find();
SQL语句where多条件查询怎么写?
比如说我想查询表A 中的字段B中含有‘1’ ‘2’ ‘3’这三个值的所有记录?
补充一下 表A中另外一个字段 C
我想查询表A 中的字段B中含有‘1’ ‘2’ ‘3’这三个值但C字段不含有‘4’的所有记录
工具/材料:以Management Studio为例。
1、首先在桌面上,点击“Management Studio”图标。
2、然后在该界面中,点击右上角“新建查询”选项。
3、之后在该界面中,输入where多条件查询的SQL语句“selec t * from rss where grade >90 and No=20”。
4、接着在该界面中,点击“执行”按钮。
5、最后在该界面中,显示where多条件查询成功。
参考技术A select * from a where b in(‘1’ , ‘2’, ‘3’) and c <> '4'本回答被提问者和网友采纳 参考技术B select * from a where (b like '%1%' or b like '%2%' or b like '%3%') and c not like '%4%'select * from a where (b=1 or b=2 or b=3) and c!=4 参考技术C select * from 表A where B in('1','2','3') and C<>'4' 参考技术D where table a.b in(1.2.3)
以上是关于TP5多条件查询怎么写的主要内容,如果未能解决你的问题,请参考以下文章