sql server 2008 创建视图错误,求高人指点 我在最后一步创建视图时出现from附近有语法错误,求指点 5
select*fromtb_map;createTabletb_map(idintnotnull,namevarchar(8));insertintotb_map(id,...
select * from tb_map;
create Table tb_map
(id int not null,
name varchar(8)
);
insert into tb_map(id, name)
values(1, 'map.jpg');
create table tb_sort
(id int not null,
father_id int not null,
name varchar(20) not null,
primary key (id)
);
create table tb_sign
(id int not null,
sort_id int not null,
x int not null,
y int not null,
title varchar(20) not null,
show int not null,
scale float not null,
date date not null,
remark varchar(200),
primary key(id)
);
create view v_sign_sort
as
select tb_sign.x,
tb_sign.y,
tb_sign.title,
tb_sort.name,
tb_sign.show,
tb_sign.scale,
tb_sign.date,
tb_sign.remark,
from dbo.tb_sign
INENER JOIN
tb_sort ON
tb_sign.sort_id = tb_sort.father_id;
go 展开
create Table tb_map
(id int not null,
name varchar(8)
);
insert into tb_map(id, name)
values(1, 'map.jpg');
create table tb_sort
(id int not null,
father_id int not null,
name varchar(20) not null,
primary key (id)
);
create table tb_sign
(id int not null,
sort_id int not null,
x int not null,
y int not null,
title varchar(20) not null,
show int not null,
scale float not null,
date date not null,
remark varchar(200),
primary key(id)
);
create view v_sign_sort
as
select tb_sign.x,
tb_sign.y,
tb_sign.title,
tb_sort.name,
tb_sign.show,
tb_sign.scale,
tb_sign.date,
tb_sign.remark,
from dbo.tb_sign
INENER JOIN
tb_sort ON
tb_sign.sort_id = tb_sort.father_id;
go 展开
展开全部
tb_sign.remark,最后的‘,’去掉就OK了
追问
执行后出现如下结果,请指点,谢谢!
消息 4104,级别 16,状态 1,过程 v_sign_sort,第 14 行
无法绑定由多个部分组成的标识符 "tb_sign.remark"。
删除 ‘,’ 后中间出现了很多4104的问题,请您帮满再指点……
追答
create view v_sign_sort
as
select ts.x,
ts.y,
ts.title,
ts.name,
tb_tsow,
ts.scale,
ts.date,
ts.remark
from dbo.tb_sign ts
INENER JOIN
tb_sort ts1 ON
ts.sort_id = ts1.father_id;
go 你试试
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
INENER JOIN 应该是:INNER JOIN 马虎!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
最后的那个栏位tb_sign.remark,多了逗号
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
from前多了一个逗号
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询