Maison > développement back-end > tutoriel php > SQL查询语句:select * from Table wher A B C D

SQL查询语句:select * from Table wher A B C D

WBOY
Libérer: 2016-06-13 10:02:05
original
1048 Les gens l'ont consulté

求一个SQL查询语句:select * from Table wher A B C D
select   *   from   Table   wher   A   and   B   and     C   and   D

其中,A,B,C,D为条件。应该怎样构造啊?

是不是要先判断a,b,c,d中,只要有一个不为空,则“where”

那AND呢?》

------解决方案--------------------
判断非空,拼sql字符串.一般先加 where 1=1 ,不会出现where and A了
------解决方案--------------------
hookee() 正解
------解决方案--------------------
hookee() 正解

where 1=1 和 where 1 != 1 在sql中会经常用到

1=1 为后面加东西做好铺垫,1 != 1 得到表的结构
------解决方案--------------------
$aWhere[] = " 1=1 ";
if(!empty($A))
$aWhere[] = $A;
if(!emtpy($B))
$aWhere[] = $B;
if(!empty($C))
$aWhere[] = $C;
if(!empty($D))
$aWhere[] = $D;

$sWhere = join( ' and ', $aWhere);
$sSql = "select * from tbl where $sWhere order by id desc ";

------解决方案--------------------
$condition = " ";
$link_symbol = " ";
if($a)
{
$condition .= "$link_symbol $a ";
$link_symbol = "and ";
}
依次类推

Étiquettes associées:
source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal