Index column in SELECT EXCEPT() after joining table using default table name as prefix
问题 This question is following up from the question originally regarding renaming the column names with table names as prefixes in google big query. Long story short, I need to join two tables with exact names and keep the origins of the columns. I learned that I can use, for example: SELECT table_A , table_B FROM table_A FULL JOIN table_B USING (KEY1, KEY2, KEY3) This code would generate a joined table with column names for example: table_A.KEY1 , table_B.KEY1 in the result on google big query.