Mysql
 sql >> Datenbank >  >> RDS >> Mysql

MySql-Auswahl in einer anderen Auswahl?

Ändern Sie where id=(SELECT zu where id IN (SELECT

Oder was Sie wirklich wollen, ist wahrscheinlich:

SELECT sum(price) FROM table2 INNER JOIN table1 ON table2.id = table1.theid WHERE table1.user_id = 'my_id'