如何检查 Mysql table 中是否存在记录
how to check if a record exists in Mysql table
我似乎无法使用代码来确定如何检查 Mysql table 中是否存在记录。
我不是很擅长这个,但我正在学习。
我想检查我的 table 呼叫用户中是否存在某个条形码。
当我执行下面的代码时出现以下错误。
Fatal error: Uncaught Error: Call to undefined function mysql_query() in C:\xampp\htdocs\watermeters\see.php:14 Stack trace: #0 {main} thrown in C:\xampp\htdocs\watermeters\see.php on line 14
查看下面的代码。
有人可以帮我处理这段代码吗?
<?php
$link = mysqli_connect("localhost", "root", "", "watermeter");
// Check connection
if($link === false){
die("ERROR: Could not connect. " . mysqli_connect_error());
}
$query = "SELECT barcode from users where barcode='5645454'";
$result = mysql_query($link, $query);
if(mysql_num_rows($result) > 0)
{
// row exists. do whatever you would like to do.
} else {
// row does not exists. do whatever you would like to do.
}
// Close connection
mysqli_close($link);
?>
你正在混合 mysql 和 mysqli
使用mysqli_query
我似乎无法使用代码来确定如何检查 Mysql table 中是否存在记录。 我不是很擅长这个,但我正在学习。 我想检查我的 table 呼叫用户中是否存在某个条形码。
当我执行下面的代码时出现以下错误。
Fatal error: Uncaught Error: Call to undefined function mysql_query() in C:\xampp\htdocs\watermeters\see.php:14 Stack trace: #0 {main} thrown in C:\xampp\htdocs\watermeters\see.php on line 14
查看下面的代码。 有人可以帮我处理这段代码吗?
<?php
$link = mysqli_connect("localhost", "root", "", "watermeter");
// Check connection
if($link === false){
die("ERROR: Could not connect. " . mysqli_connect_error());
}
$query = "SELECT barcode from users where barcode='5645454'";
$result = mysql_query($link, $query);
if(mysql_num_rows($result) > 0)
{
// row exists. do whatever you would like to do.
} else {
// row does not exists. do whatever you would like to do.
}
// Close connection
mysqli_close($link);
?>
你正在混合 mysql 和 mysqli
使用mysqli_query