我有一个页面,功能是搜索数据。
我的表格列中有这样的:
form_no | status
1 | WW025687732
2 | QR1233545AB
获取函数:
$status = $_GET['status_sheet'];
我使用这样的SQL:
$query = mysql_query("SELECT * FROM t_test WHERE status LIKE '$status%'");
当我使用更多文本或数字搜索 WW025687732 时,例如 WW025687732-1224AS。它无法运行。如果状态包含 WW025687732 并且如果我添加更多类似 WW025687732-1224AS 的文本,它将显示。