SQL - Advanced Joins
Consider this SQL query:
What is the main issue with this query?
SELECT a.id, b.value FROM tableA a RIGHT JOIN tableB b ON a.id = b.a_id WHERE a.id > 10;
What is the main issue with this query?
