このクロス結合は正常に機能します。
select * from x, y
このクエリを実行しようとしています:
select abc.col1 from abc
(select * from x, y) abc
しかし、次のエラー メッセージが表示されます。
Msg 8156, Level 16, State 1, Line 2
The column 'col1' was specified multiple times for 'abc'.
テーブル x と y の両方に同じ列と列定義があります。
アイデア/提案はありますか?