Subject | flamerobin, declare a variable |
---|---|
Author | firebirdsql |
Post date | 2011-06-12T14:22:20Z |
I'm executing a query and would like to use a variable in flamerobin, how would I do it? The following fails (I don't want to create a stored procedure or a function)
DECLARE VARIABE test VARCHAR(25);
test = 'a';
SELECT *, :test FROM accounts;
DECLARE VARIABE test VARCHAR(25);
test = 'a';
SELECT *, :test FROM accounts;