Hi,
The following are part of a query. Can anyone explain to me what is [dbo], T1.
declare @startDate DateTime
declare @endDate DateTime
select @startDate = T1.RefDate from [dbo].[ojdt] T1 where T1.RefDate = '[%1]'
select @endDate = T2.RefDate from [dbo].[ojdt] T2 where T2.RefDate = '[%2]'
RefDate between @startDate and @endDate
Thanks.
Raymond