MySQL
 Computer >> コンピューター >  >> プログラミング >> MySQL

重複を削除してMySQLのテーブルに1行を残す方法は?


重複を削除してテーブルに1行を残すには、一時テーブルの概念を使用する必要があります。手順は次のとおりです-

create table anytemporaryTableName as select distinct yourColumnName1, yourColumnName2 from yourTableName;
truncate table yourTableName;
insert into yourTableName(yourColumnName1, yourColumnName2) select yourColumnName1, yourColumnName2 from yourtemporaryTableName ;
drop table yourtemporaryTableName ;

テーブルを作成しましょう-

mysql> create table demo39
−> (
−> user_id int,
−> user_name varchar(20)
−> );
Query OK, 0 rows affected (0.74 sec)

挿入コマンド-

を使用して、いくつかのレコードをテーブルに挿入します。
mysql> insert into demo39 values(10,'John');
Query OK, 1 row affected (0.19 sec)

mysql> insert into demo39 values(10,'John');
Query OK, 1 row affected (0.13 sec)

mysql> insert into demo39 values(11,'David');
Query OK, 1 row affected (0.20 sec)

mysql> insert into demo39 values(11,'David');
Query OK, 1 row affected (0.17 sec)

selectステートメントを使用してテーブルのレコードを表示する-

mysql> select *from demo39;

これにより、次の出力が生成されます-

+---------+-----------+
| user_id | user_name |
+---------+-----------+
|      10 | John      |
|      10 | John      |
|      11 | David     |
|      11 | David     |
+---------+-----------+
4 rows in set (0.00 sec)

以下は、重複を削除してテーブルに1行を残すためのクエリです-

mysql> create table temporaryTable as select distinct user_id, user_name from demo39;
Query OK, 2 rows affected (1.39 sec)
Records: 2 Duplicates: 0 Warnings: 0

mysql> truncate table demo39;
Query OK, 0 rows affected (2.30 sec)

mysql> insert into demo39(user_id, user_name) select user_id, user_name from temporaryTable;
Query OK, 2 rows affected (0.16 sec)
Records: 2 Duplicates: 0 Warnings: 0

mysql> drop table temporaryTable;
Query OK, 0 rows affected (1.01 sec)

selectステートメントを使用してテーブルのレコードを表示する-

mysql> select *from demo39;

これにより、次の出力が生成されます-

+---------+-----------+
| user_id | user_name |
+---------+-----------+
|      10 | John      |
|      11 | David     |
+---------+-----------+
2 rows in set (0.00 sec)

  1. 重複を削除してMySQLのテーブルに1行を残す方法は?

    重複を削除してテーブルに1行を残すには、一時テーブルの概念を使用する必要があります。手順は次のとおりです- create table anytemporaryTableName as select distinct yourColumnName1, yourColumnName2 from yourTableName; truncate table yourTableName; insert into yourTableName(yourColumnName1, yourColumnName2) select yourColumnName1, yourColumnName2 from your

  2. MySQLテーブルの単一行で値がNullであるかどうかを確認するにはどうすればよいですか?

    このために、MySQLでISNULLを使用できます。 テーブルを作成しましょう- 例 mysql> create table demo86    -> (    -> value1 varchar(20)    -> ,    -> value2 varchar(20)    -> ); Query OK, 0 rows affected (2.77 挿入コマンド-を使用して、いくつかのレコードをテーブルに挿入します。 例 mysql> insert