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);