web-dev-qa-db-ja.com

MySQLデータベースに値が存在するかどうかを確認する方法

私はこのテーブルを持っていると仮定します:

id | name | city
------------------
1  | n1   | c1
2  | n2   | c2
3  | n3   | c3
4  | n4   | c4

c7は変数cityの下に存在するかどうか。

もしそうなら、私は何かをします。
そうでない場合は、別のことを行います。

30
Hatim

mySQLi拡張機能を使用する好ましい方法:

$mysqli = new mysqli(SERVER, DBUSER, DBPASS, DATABASE);
$result = $mysqli->query("SELECT id FROM mytable WHERE city = 'c7'");
if($result->num_rows == 0) {
     // row not found, do stuff...
} else {
    // do other stuff...
}
$mysqli->close();

非推奨:

$result = mysql_query("SELECT id FROM mytable WHERE city = 'c7'");
if(mysql_num_rows($result) == 0) {
     // row not found, do stuff...
} else {
    // do other stuff...
}
62
Reinder Wit

完全一致の場合

"SELECT * FROM yourTable WHERE city = 'c7'"

パターン/ワイルドカード検索用

"SELECT * FROM yourTable WHERE city LIKE '%c7%'"

もちろん、'%c7%'から'%c7' または 'c7%'検索方法に応じて。完全に一致させるには、最初のクエリの例を使用します。

PHP

$result = mysql_query("SELECT * FROM yourTable WHERE city = 'c7'");
$matchFound = mysql_num_rows($result) > 0 ? 'yes' : 'no';
echo $matchFound;

if条件を使用することもできます。

15
Blaster

接続が確立され、グローバルスコープで利用可能であると仮定します。

//Check if a value exists in a table
function record_exists ($table, $column, $value) {
    global $connection;
    $query = "SELECT * FROM {$table} WHERE {$column} = {$value}";
    $result = mysql_query ( $query, $connection );
    if ( mysql_num_rows ( $result ) ) {
        return TRUE;
    } else {
        return FALSE;
    }
}

使用法:チェック対象の値が変数$ usernameに格納されていると仮定します。

if (record_exists ( 'employee', 'username', $username )){
    echo "Username is not available. Try something else.";
} else {
    echo "Username is available";
}
2
user1979610

しばらくこれを試してみましたが、同じエントリが2つある場合は_$sqlcommand = 'SELECT * FROM database WHERE search="'.$searchString.'";';
$sth = $db->prepare($sqlcommand); $sth->execute(); $record = $sth->fetch(); if ($sth->fetchColumn() > 0){}
_が機能しますが、if ($sth->fetchColumn() > 0){}if ($result){}に置き換えた場合、一致するレコードは1つだけです、 お役に立てれば。

0
mushkincode
SELECT
    IF city='C7'
    THEN city
    ELSE 'somethingelse'
    END as `city`
FROM `table` WHERE `city` = 'c7'
0
Muhammad Raheel

IDの照合:

Select * from table_name where 1=1

パターンのマッチング用:

Select * from table_name column_name Like '%string%'
0
Hassam Satti