0
我得到了一個變量列表來遍歷數據庫。我如何檢測變量不在數據庫中?我應該使用什麼查詢?一旦檢測到變量不在數據庫中,如何打印出錯誤信息。如何檢查變量是否是數據庫並將其打印出來?
我的代碼:
$variable = $sql->{'variable'};
foreach my $sql (@Records){
**Below statement will select existed variable, what should I change to make it select not existed variable**
$sqlMySQL = "Select LOT from table where LOT like '%$variable%'";
}
**If not exist**{
print("Not exist")
}
預期結果:
雖然$variable
遍歷數據庫,如果沒有$variable
存在於數據庫中,然後打印出$variable
或不存在。
感謝您的觀看,評論和解答。