I have 10 tables and each table have 10 columns with similar Name. Tables have some other column too with dissimilar Name so is there anyway to write
SELECT query so that i do not have to repeatedly write column name?
I have 10 tables and each table have 10 columns with similar Name. Tables
Share
Assuming you’re using MySQL, you can select all columns in table by using the ‘*’ selector:
Also, you can use ‘AS’ to define each column: