Inserting name values into the multisequence table generates separate sequences for each distinct name: : Distinct « Select Clause « SQL / MySQL






Inserting name values into the multisequence table generates separate sequences for each distinct name:

       
mysql>
mysql> CREATE TABLE multisequence
    -> (
    ->     name     CHAR(10) NOT NULL,
    ->     name_id  INT UNSIGNED NOT NULL AUTO_INCREMENT,
    ->     PRIMARY KEY (name, name_id)
    -> );
Query OK, 0 rows affected (0.00 sec)

mysql>
mysql> INSERT INTO multisequence (name) VALUES('Petr'),('Ilya'),('Ilya'),('Yuri'),('Ilya'),('Petr');
Query OK, 6 rows affected (0.00 sec)
Records: 6  Duplicates: 0  Warnings: 0

mysql>
mysql> SELECT * FROM multisequence ORDER BY name, name_id;
+------+---------+
| name | name_id |
+------+---------+
| Ilya |       1 |
| Ilya |       2 |
| Ilya |       3 |
| Petr |       1 |
| Petr |       2 |
| Yuri |       1 |
+------+---------+
6 rows in set (0.00 sec)

mysql>
mysql> drop table multisequence;
Query OK, 0 rows affected (0.00 sec)

   
    
    
    
    
    
    
  








Related examples in the same category

1.Use DISTINCT to get non-dupliate records
2.Use DISTICNT to get unique value
3.Eliminating Duplicate Data Using DISTINCT 1
4.Eliminating Duplicate Data Using DISTINCT 2
5.Select distinct records using JOIN
6.The SQL key word DISTINCT has the effect that equivalent data records are output only once.
7.DISTINCT works with multiple-column output too.
8.how many different drivers there are, use COUNT(DISTINCT)
9.DISTINCT with two columns
10.DISTINCT works with expressions, not just column values.
11.Count distinct
12.Distinct sub string
13.Average distinct value
14.Return a list of surnames, with each surname appearing only once?
15.The fraction of the records that contain unique or non-unique names: