rogerzebra
Technical User
Hi,
I have to ask someone to help me to translate a t-sql date parameter report to a pl-sql (Sql*Plus). This was a while ago I did something in Oracle. All help is much appreciated.
Thanks
I have to ask someone to help me to translate a t-sql date parameter report to a pl-sql (Sql*Plus). This was a while ago I did something in Oracle. All help is much appreciated.
Thanks
Code:
declare @StartDt date
,@EndDt
set @StartDt ='2001-01-01'
set @StartDt ='2001-02-01'
select
convert(varchar(10), @StartDt, 101) as StartDt
..
where Date between @StartDt and @EndDt