Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

Consulta MySQL que corresponde a dois campos e tem outro campo em comum

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