私はこのテーブルを持っています
date | Expedition | Destination
________________________________________
12/05/2012 | UPS | New York
12/05/2012 | DHL | New York
13/06/2012 | ATLAS | Atlanta
14/06/2012 | JNE | Chicago
検索結果とこれを自分のコードで作成したい
<form method="post" action="sales.php?ID=expLocal">
Pencarian <input type="text" name="KUNCI" width="300"/><input type="submit" name="CARI" value="CARI" />
</form>
<?php
if (empty($_POST[CARI]))
{
$sql = "SELECT * FROM tb_exp_local";//this query for open all the data
}
else if (isset($_POST[KUNCI]))
{
$kunci=$_POST[KUNCI];
$sql="SELECT * FROM tb_exp_local WHERE MATCH (expedition,destination,date) AGAINST ('+$kunci' IN BOOLEAN MODE)"; // this is query for serching the data
}
?>
クエリは正常に実行されますが、検索ボックスに日付が入力されている場合、クエリは実行されません。誰かがこれを修正する方法を教えてもらえますか?(列の日付のデータ型はvarcharです)