In Microsoft SQL Server
DECLARE @var INT
SET @var = 1
SELECT @var
What would the equivalent statement be in Aqua Data Studio when querying an Oracle server?
I've tried different variations of this (with GO or ; as statement separators, nothing has worked so far).
DECLARE var INTEGER
SELECT var FROM DUAL
I guess you can use variable binding, but it does have a different syntax. Try the below example query.
=== Query ===
.variable var1, VARCHAR, '10'
.variable var2, VARCHAR, '30'
.executeCallableQuery 'var1,var2',
select * from SCOTT.DEPT
More info here: https://www.aquaclusters.com/app/home/project/public/aquadatastudio/wikibook/Documentation14/page/196/Aqua-Commands