sql >> データベース >  >> RDS >> Mysql

MySQLを使用してテーブルをロックし、読み取り、切り捨てます

    書き込み用にロックされているテーブルを切り捨てることはできません。これは、「切り捨て」は「テーブルを破棄し、同じスキーマで新しいテーブルを再作成する」ことを意味するためです。

    ただし、空にすることはできます テーブル。 TRUNCATE TABLE asin_one_time_onlyの代わりに DELETE FROM asin_one_time_onlyを使用します 。これは自動インクリメントの番号付けをリセットしないことに注意してください。同様にリセットする場合は、ALTER TABLE asin_one_time_only auto_increment=1を使用します

    これを行うことをお勧めします:

    LOCK TABLES asin_one_time_only READ;
    SELECT asin FROM asin_one_time_only;
    -- minimize the possibility of someone writing to the table in-between
    -- an "UNLOCK TABLES" and a "LOCK TABLES" by just issuing a new LOCK TABLES
    -- I am not 100% sure that MySQL will do this atomically, so there is a
    -- possibility that you may delete a row that was not read.
    -- If this is unacceptable, then use a "LOCK TABLES asin_one_time_only WRITE"
    -- from the very beginning.
    LOCK TABLES asin_one_time_only WRITE;
    DELETE FROM asin_one_time_only;
    ALTER TABLE asin_one_time_only auto_increment=1;
    UNLOCK TABLES;
    


    1. T-SQLで月末を取得する方法

    2. JPA + Hibernate:ONDELETECASCADEを持つ制約を定義する方法

    3. ip =inet_pton($ ip)の場所を選択できません

    4. SQLServerで重複する行を検索する