You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I will attach the class files used to create the tables, but the following command resulted in a result set with only the columns ID and Name:
INSERT INTO SQLUser.Table1 (Name) VALUES ('Name 1')
INSERT INTO SQLUser.Table2 (Name) Values ('Name 2')
SELECT * FROM SQLUser.Table1 CROSS JOIN SQLUser.Table2
I expected either the columns "ID", "Name", "ID", "Name" as in the Management Portal, or "SQLUser.Table1.ID", "SQLUser.Table1.Name", "SQLUser.Table2.ID", "SQLUser.Table2.Name". All 4 columns should display.