Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
トランザクションとストアド プロシージャとは別に、更新クエリと挿入クエリを同じステートメントに結合することは可能ですか。
例:一度にテーブル1のレコードを更新し、テーブル2にデータを挿入したいとします。
入力するだけで、自動的に mysqli が読み取ります。お気に入り
@mysql_query("INSERT INTO x (`name`,`age`) VALUES ('me','21')"); @mysql_query("UPDATE y SET `status`='verified' WHERE `name`='me'");