select 쿼리문 질문드립니다.
본문
아래처럼 만들어진 select 쿼리의 경우 어떤(결과)값을 불러오나요??
tt = '0~500만원 , 500~1000만원, 1000~1500만원, 1500만원~2000만원, 2000만원 이상';
$foo = explode(' , ', $tt);
echo $foo[0]; // 0~500만원
echo $foo[1]; // 500~1000만원
.
.
.
.
$select_price = $foo[*];
$query = "select * from boodongsan_table where price = ".$select_price." order by price desc";
답변을 작성하시기 전에 로그인 해주세요.