Popular Posts

SQLblog.com - The SQL Server blog spot on the web

Sunday, August 27, 2017

Left outer join make duplicate column name

SQLServerCentral » Latest topics
Left outer join make duplicate column name
I used code below to select 10 temp tables as one row table.
All 10 tables has the same column [FileID].
How to make final table only list one [FileID] column?
SELECT DISTINCT
   *
  FROM #1 A01
   LEFT O

No comments: