I have three similar tables with same fields and one field has same values. Like
Table1(Column1:USA,Column2:200)
Table2(Column1:USA,Column2:400)
Table3(Column1:USA,Column2:500)
What I want is to query data Like this:
ColumnA Table1Value Table2Value Table3Value
USA 200 400 500
I know database is not normalized, but I’ve to use the same as many parts of the application are already using this structure
1 Answer