3

行の重複選択を避けるために、SELECT クエリと UPDATE クエリを組み合わせたいと考えています。

これが私のコード例です:

private function getNewRCode() {

    $getrcodesql = "SELECT * FROM `{$this->mysqlprefix}codes` WHERE `used` = 0 LIMIT 1;";
    $getrcodequery = $this->mysqlconn->query($getrcodesql);

    if(@$getrcodequery->num_rows > 0){

        $rcode = $getrcodequery->fetch_array();

        $updatercodesql = "UPDATE `{$this->mysqlprefix}codes` SET `used` =  '1' WHERE `id` = {$rcode['id']};";
        $this->mysqlconn->query($updatercodesql);

        $updateusersql = "UPDATE `{$this->mysqlprefix}users` SET `used_codes` =  `used_codes`+1, `last_code` =  '{$rcode['code']}', `last_code_date` =  NOW() WHERE `uid` = {$this->uid};";
        $this->mysqlconn->query($updateusersql);

        $output = array('code' => $rcode['code'],
                        'time' => time() + 60*60*$this->houroffset,
                        'now' => time()
                        );

        return $output;

    }

}

同じコードが異なるユーザーに使用されることを避けるために、一度に実行$getrcodesqlしたいと思います。$updatercodesql

あなたが私の問題を理解し、これに対する解決策を知っていることを願っています.

ごきげんよう、フレデリック

4

1 に答える 1

2

逆にすると簡単です。重要なのは、とを実行する前に
、クライアントが一意の値を生成できるということです。UPDATESELECT

列のタイプを別のタイプに変更しusedて、0と1だけでなく、GUIDまたはタイムスタンプを格納できるようにします
(私はPHP / MySQLの専門家ではないので、正確に何を知っているかはおそらく私よりもよくわかります使用する)

次に、これを(擬似コードで)行うことができます。

// create unique GUID (I don't know how to do this in PHP, but you probably do)
$guid = Create_Guid_In_PHP();

// update one row and set the GUID that you just created
update codes
set used = '$guid'
where id in
(
    select id 
    from codes
    where used = ''
    limit 1
);

// now you can be sure that no one else selected the row with "your" GUID
select *
from codes
where used = '$guid'

// do your stuff with the selected row
于 2012-05-05T12:17:57.407 に答える