נשלח בתאריך: 08 May 2008 בשעה 19:32 | | IP רשוּם
|
|
|
|
התקנתי לראשונה MS SQL Server ונראה לי שהוא לא מוגדר כראוי.
כאשר ניסיתי לבצע שאילתות קצת יותר מתוחכמות מ-SELECT פשוט, הוא לא מצליח לבצע.
תחילה חשבתי שזו בעיה בתחביר שלי, אך לאחר מכן נכנסתי לאתר מקצועי והעתקתי את הקוד הבא:
קוד:
DECLARE @DateHired As DateTime, @CurrentDate As DateTime SET @DateHired = '1996/10/04' SET @CurrentDate = '2007/04/11' IF @DateHired < @CurrentDate PRINT 'You have the experience required for a new promotion in this job' GO
|
|
|
שלכאורה אמור לעבוד היטב, אך השאילתה החזירה את השגיאה הבאה:
Major Error 0x80040E14, Minor Error 25501
> DECLARE @DateHired As DateTime,
@CurrentDate As DateTime
SET @DateHired = '1996/10/04'
SET @CurrentDate = '2007/04/11'
IF @DateHired < @CurrentDate
PRINT 'You have the experience required for a new promotion in this job'
There was an error parsing the query. [ Token line number = 1,Token line offset = 1,Token in error = DECLARE ]
למישהו יש מושג מה הבעיה?
תודה לעוזרים!!
|