मेरा मुख्य कौशल एसक्यूएल सर्वर के साथ है, लेकिन मुझे ओरेकल क्वेरी के कुछ ट्यूनिंग करने के लिए कहा गया है। मैंने निम्नलिखित एसक्यूएल लिखा है:
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
मैं Oracle में वेरिएबल्स की घोषणा और उपयोग कैसे करूँ?