Mysql
 sql >> Base de données >  >> RDS >> Mysql

Requête MySQL qui correspond à deux champs et a un autre champ en commun

SELECT *
    FROM YourTable t1
        INNER JOIN YourTable t2
            ON t1.f1 = t2.f1
    WHERE t1.f2 = 'hi'
        AND t2.f2 = 'sup'