I\'m building a PHP page with data sent from MySQL.
Is it better to have
SELECT
SELE
I would say 1 query with the join. This way you need to hit the server only once. And if your tables are joined with indexes, it should be fast.