Common
Last updated
Last updated
Use references to identify table's columns
E.g., SELECT c.name FROM customers c;
Otherwise, it might not able to map all columns from a table.
When a query involves multiple tables, it can be difficult to identify which column belongs to which table, especially if the tables have columns with the same names.
Learn more: references.qualification
Learn more: aliasing.unique.table