Home:ALL Converter>SQL Server equivalent in Oracle

SQL Server equivalent in Oracle

Ask Time:2013-04-24T15:26:53         Author:Arnes

Json Formatter

I'm new in Oracle database. What I need is equivalent query in Oracle like this example from SQL Server (reading results in Management Studio). On Oracle side, I'm using Golden6 from Benthic Software.

declare @n integer
set @n = 100;
select * from table where id >= @n and id <= @n + 50

Thank you.

Author:Arnes,eproduced under the CC 4.0 BY-SA copyright license with a link to the original source and this disclaimer.
Link to original article:https://stackoverflow.com/questions/16185917/sql-server-equivalent-in-oracle
yy