Le mie competenze principali sono con SQL Server, ma mi è stato chiesto di eseguire alcune ottimizzazioni di una query Oracle. Ho scritto il seguente SQL:
declare @startDate int
select @startDate = 20110501
E ottengo questo errore:
declare @startDate int
select @startDate = 20110501
Error at line 1
ORA-06550: line 1, column 9:
PLS-00103: Encountered the symbol "@" when expecting one of the following:
begin function package pragma procedure subtype type use
<an identifier> <a double-quoted delimited-identifier> form
current cursor
Come dichiaro e utilizzo le variabili in Oracle?