Skip to main content
Journey Uncommon Logo
JourneyUncommon
easySQLINNER JOINSingle-choice MCQ

You join two tables with USING on a shared column name. How does the joined column appear in `SELECT *`?

SELECT * FROM orders INNER JOIN customers USING (customer_id);