আমার মূল দক্ষতা এসকিউএল সার্ভারের সাথে রয়েছে তবে আমাকে ওরাকল ক্যোয়ারির কিছু টিউনিং করতে বলা হয়েছে। আমি নিম্নলিখিত এসকিউএল লিখেছি:
declare @startDate int
select @startDate = 20110501
এবং আমি এই ত্রুটি পেয়েছি:
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
আমি কীভাবে ওরাকলে ভেরিয়েবলগুলি ঘোষণা করব এবং ব্যবহার করব?