I have the following SQL
set @ID = '323232'
select
tt.ItemOrder, tt.DisplayVal,
ActualDate = (select mfdate from mfseries where Id = @ID)
from
tblTime tt
Is there a way to simplify this query to not use a subquery?
|
I have the following SQL
Is there a way to simplify this query to not use a subquery? |
||||
|
|
|
|||
|
|