Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
你好我正在尝试这个查询:
DECLARE v_week NUMBER; BEGIN SELECT WEEK FROM WEEKDESTINATION INTO (v_week) WHERE STARTDATE BETWEEN '02-JAN-2010'AND '09-JAN-2010'; END;
但它会引发以下错误:PL/SQL: ORA-00933: SQL command not properly end
请帮忙
应该
SELECT WEEK INTO v_week FROM WEEKDESTINATION where .......