热门标签 | HotTags
当前位置:  开发笔记 > 数据库 > 正文

多个查询条件的sql话语的拼写技巧,求指点

多个查询条件的sql语句的拼写技巧,求指点。多个查询条件的sql语句的拼写技巧,求指点。$sqlselect * from tb1;if($id]){$where. where id like %$id%;}if($name$_
多个查询条件的sql语句的拼写技巧,求指点。
多个查询条件的sql语句的拼写技巧,求指点。


$sql="select * from tb1";
if($id=$_GET['id'])
{
$where.=" where id like "%$id%"";
}
if($name=$_GET['name'])
{
$where.=" where name like "%$name%"";
}

//当id有值的时候
sql=select * from tb1 where id like "%$id%"
//当name有值的时候
sql=select * from tb1 where name like "%$name%"

//当同时又值的时候,sql就出错了
sql=select * from tb1 where name like "%$name%" where where id like "%$id%"

//当然你可以说用
if($id=$_GET['id']&&$name=$_GET['name'])
{
where.= "and";
}

我举的例子只有两个条件,实际项目中我这里有十几个条件,这种方式肯定不行。
求更好的拼接方式


------解决方案--------------------
$where = array();
foreach($_GET as $k=>v) $where[] = "$k like '%$v%'";
$sql="select * from tb1";
if($where) $sql .= ' where ' . join(' and ', $where);

------解决方案--------------------
$sql="select * from tb1";
$where = array();
if($id=$_GET['id'])
{
$where[]=" id like '%$id%'";
}
if($name=$_GET['name'])
{
$where[]=" name like '%$name%'";
}

$s=(!empty($where)) ? " where " . implode(" and " , $where) : '';
$sql.=$s;

------解决方案--------------------
我个人觉得我这个简单

$sql="select * from tb1 where 1=1";
if($id=$_GET['id']) $sql.=" and id like "%$id%"";
if($name=$_GET['name']) $sql.=" and name like "%$name%"";

------解决方案--------------------
引用:
我个人觉得我这个简单

$sql="select * from tb1 where 1=1";


推荐阅读
author-avatar
手浪用户2602931657
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有