This is my view:
Create View [MyView] as
(
Select col1, col2, col3 From Table1
UnionAll
Select col1, col2, col3 From Table2
)
I need to add a new column named Id and I need to this column be unique so I think to add new column as identity. I must mention this view returned a large of data so I need a way with good performance, And also I use two select query with union all I think this might be some complicated so what is your suggestion?
idwill not be stable (ifTable1grows, the firstidofTable2will be different from before)? – Oded♦ Apr 30 '12 at 10:42ROW_NUMBERtype functionality here. – Oded♦ Apr 30 '12 at 10:43