Mysql
 sql >> Baza danych >  >> RDS >> Mysql

SQL self-join table usuń zduplikowane wiersze

Z twoimi identyfikatorami:

SELECT a.userId , a.LanguageId, b.LanguageId
  FROM knownlanguages a inner join knownlanguages b  
    on a.userID=b.userID and a.LanguageId < b.LanguageId

Testowanie:Fot table:

create table t ( u int, l int);

insert into t values 
(    1,               2),
(    1,               7),
(    1,               8),
(    2,               10),
(    2,               3);

Zapytanie to:

select t1.u, t1.l as l1, t2.l as l2
from t t1 inner join t t2
   on t1.u = t2.u and t1.l < t2.l

( Wyniki )



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. MySQL:Sortuj wartości GROUP_CONCAT

  2. Sposoby na uniknięcie braku synchronizacji poleceń MySQLdb; nie możesz teraz uruchomić tego polecenia (2014) wyjątek

  3. jak dodać super uprawnienia do bazy mysql?

  4. Czy użytkownicy 'User'@'%' i 'User'@'localhost' to nie to samo?

  5. W MySQL funkcja CHAR() działa dziwnie