关键字 'Select' 附近有语法错误
createviewBTS_Max_Altitude(BscID,max_Altitude)as(selectBscID,max(Altitude)fromBTSgrou...
create viewBTS_Max_Altitude(BscID,max_Altitude) as(
select BscID,max(Altitude)
from BTS
group by BscID
)
select BTS.*
from BTS,BTS_Max_Altitude
where BTS.Altitude =BTS_Max_Altitude.max_Altitude and BTS.BscID = BTS_Max_Altitude.BscID
drop view BTS_Max_Altitude
消息 156,级别 15,状态 1,过程 BTS_Max_Altitude,第 6 行
关键字 'select' 附近有语法错误。 展开
select BscID,max(Altitude)
from BTS
group by BscID
)
select BTS.*
from BTS,BTS_Max_Altitude
where BTS.Altitude =BTS_Max_Altitude.max_Altitude and BTS.BscID = BTS_Max_Altitude.BscID
drop view BTS_Max_Altitude
消息 156,级别 15,状态 1,过程 BTS_Max_Altitude,第 6 行
关键字 'select' 附近有语法错误。 展开
2个回答
展开全部
create后要加分号;sql 中不是所有的分号都可以省略的
create viewBTS_Max_Altitude(BscID,max_Altitude) as(
select BscID,max(Altitude)
from BTS
group by BscID
);
select BTS.*
from BTS,BTS_Max_Altitude
where BTS.Altitude =BTS_Max_Altitude.max_Altitude and BTS.BscID = BTS_Max_Altitude.BscID
drop view BTS_Max_Altitude
create viewBTS_Max_Altitude(BscID,max_Altitude) as(
select BscID,max(Altitude)
from BTS
group by BscID
);
select BTS.*
from BTS,BTS_Max_Altitude
where BTS.Altitude =BTS_Max_Altitude.max_Altitude and BTS.BscID = BTS_Max_Altitude.BscID
drop view BTS_Max_Altitude
更多追问追答
追问
加了分号也不对
消息 102,级别 15,状态 1,第 1 行
'viewBTS_Max_Altitude' 附近有语法错误。
追答
create view 后面加空格
create view BTS_Max_Altitude
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询