我在这里做错了什么
从命令行中的第1行开始出错 -
declare @rdate datetime
set @rdate= sysdate()
答案 0 :(得分:1)
你尝试做PL / SQL吗? 如果是,请尝试:
-- Declare block for creating variables and cursors.
DECLARE
rdate date; -- create "rdate"
-- Begin block for the method's executable code.
BEGIN
rdate := sysdate; -- Assignment: rdate = now
--- (More code here)
END; -- End of the method.
您还可以在查询样式中使用赋值(在PLSQL方法中):
SELECT sysdate INTO rdate FROM dual;