PHP 는 MySQL 의 검색 결 과 를 배열 로 변환 하고 where 로 연결 하 는 예제 입 니 다.
where 맞 춤 법
where 문 구 를 분기 에서 주간 으로 옮 기 고 where 가 분기 에 있 는 여러 가지 상황 을 해결 합 니 다.분기 조건 은 and 연결 만 하면 where 1=1 등 입 니 다.
$sql="SELECT * FROM bb where true ";
'1=1'을 추가 한 여과 조건 을 사용 한 후에 데이터베이스 시스템 은 색인 등 조회 최적화 전략 을 사용 할 수 없 기 때문에 데이터 베이스 시스템 은 각 줄 의 데 이 터 를 스 캔(즉,전체 표 스 캔)하여 이 줄 이 여과 조건 을 만족 시 키 는 지 비교 하도록 강요당 할 것 이다.표 의 데이터 양 이 비교적 많 을 때 조회 속도 가 매우 느 릴 것 이다.최적화 방법test.html
<td> :</td>
<td width="200"><input type="text" class="text" name="kit_name" id="fn_kit_name"/></td>
<td align="right"> :</td>
<td width="200"><input type="text" name="search[or_get_reg_date]"/><img src="images/data.jpg" /></td>
<td> :</td>
<td width="200"><input type="text" name="search[lt_reg_date]"/><img src="images/data.jpg" /></td>
</tr>
<tr>
<td> :</td>
<td><input type="text" class="text" name="search[managerid]"/></td>
<?php
$postData = array(
'managerid' => '21',
'or_get_reg_date' => '09',
'lt_reg_date' => '2012-12-19',
'in_id' => array(1, 2, 3),
);
$tmpConditions = transArrayTerms($postData);
echo $whereCause = getWhereSql($tmpConditions);
// WHERE managerid like '21%' OR reg_date<'09' AND reg_date>'2012-12-19' AND id in ('1','2','3')
where 조건 의 sql 처리
<?php
/**
* where
*/
function transArrayTerms($infoSearch) {
$aryRst = array();
$separator = array('lt'=>'<', 'let'=>'<=', 'gt'=>'>', 'get'=>'>=', 'eq'=>'=', 'neq'=>'<>');
foreach ($infoSearch as $term => $value) {
if (empty($value)) continue;
$name = $term;
if (strpos($term, "or_") !== false) { // or
$terms['useOr'] = true;
$name = str_replace("or_", "", $term);
}
if (strpos($name, "in_") !== false) {
$terms['name'] = str_replace("in_", "", $name);
$terms['charCal'] = " in ";
$terms['value'] = "('" . implode("','", $value) . "')";
} else {
$terms['name'] = $name;
$terms['charCal'] = " like ";
$terms['value'] = "'" . trim($value) . "%'";
}
// else
foreach($separator as $charCalName =>$charCalVal){
if (strpos($name, $charCalName."_") !== false) {
$terms['name'] = str_replace($charCalName."_", "", $name);
$terms['charCal'] = $charCalVal;
$terms['value'] = "'" . trim($value) . "'";
}
}
$aryRst[] = $terms;
unset($terms);
}
return $aryRst;
}
function whereOperator($has_where, $useOr) {
$operator = $has_where ? ($useOr === false ? ' AND ' : ' OR ') : ' WHERE ';
return $operator;
}
/**
* aryTerm transArrayTerms
* @ sql where .
*/
function getWhereSql($aryTerm) {
$whereCause = '';
if (count($aryTerm) > 0) {
$has_where = '';
foreach ($aryTerm as $value) {
$has_where = whereOperator($has_where, isset($value['useOr']));
$whereCause .= $has_where . $value['name'] . $value['charCal'] . $value['value'];
}
}
return $whereCause;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
laravel에 yo에서 angularJs&coffeescript를 사용할 수 있도록 한다.먼저 yo 명령을 사용할 수 있어야하므로 아래에서 설치 global에 설치한 곳에서 laravel의 프로젝트 루트로 이동. 클라이언트 코드를 관리하는 디렉토리를 만들고 이동합니다. 클라이언트 환경 만들기 이것으로 히...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.