我试图创建一个视图和一个过程。然而,没有一个可以做到。
我试过创建这样的过程:
create procedure name ( @time )
as
begin
select tag_ID from Location where tag_ID=@time;
end
create procedure name
as
select tag_ID from Location where tag_ID=@time;
end
两者都导致以下错误
主要错误 0x80040E14,次要错误 25501 create procedure name as select tag_ID from Location where tag_ID=@time 解析查询时出错。[令牌行号=1,令牌行偏移量=8,错误令牌=过程]
用于创建视图
create view Time as select time from Location;
我收到的错误是:
主要错误 0x80040E14,次要错误 25501 create view Time as select time from Location 解析查询时出错。[令牌行号=1,令牌行偏移量=8,错误令牌=查看]
使用 CREATE 似乎有些问题,但我无法弄清楚。
我已经尝试了大部分语法,但似乎不起作用,其中大多数都会弹出相同的错误。
** 我使用的是 SQL 精简版。