Minhas principais habilidades são com o SQL Server, mas me pediram para fazer alguns ajustes em uma consulta Oracle. Eu escrevi o seguinte SQL:
declare @startDate int
select @startDate = 20110501
E eu recebo este erro:
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
Como declaro e uso variáveis no Oracle?