欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

mysql where 1

程序员文章站 2022-07-11 17:02:04
where后跟各种查询条件,当条件为真时即可查询出记录。在这里where 1,1为真,也就是where后的条件为真,查询表中所有内容。 ......

where后跟各种查询条件,当条件为真时即可查询出记录。在这里where 1,1为真,也就是where后的条件为真,查询表中所有内容。

select * from `sdb_pam_members` where 1 and `sdb_pam_members`.login_account='18334711695' and `sdb_pam_members`.login_type='mobile' limit 0, 1;