这段 sql 脚本是什么意思啊 说详细点 还有那个t1 t2 是什么意思啊? 20

ifexists(select*fromdbo.sysobjectswhereid=object_id(N'[dbo].[v_data]')andOBJECTPROPER... if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[v_data]') and OBJECTPROPERTY(id, N'IsView') = 1)
drop view [dbo].[v_data]
GO

SET QUOTED_IDENTIFIER OFF
GO
SET ANSI_NULLS ON
GO

CREATE VIEW dbo.v_data
AS
SELECT t1.SiteNo,t2.UserName, t1.Absence, t1.DifPress * 1.0 / 1000 as DifPress, t1.Press * 1.0 / 1000 as Press, t1.Tempe, t1.InsQuant * 1.0 / 1000 as InsQuant,
t1.SumQuant * 1.0 / 1000 as SumQuant, t1.InsHeat * 1.0 / 1000 as InsHeat, t1.SumHeat* 1.0 / 1000 as SumHeat, t1.GasTime, t1.EleTime, t1.RecordTime
FROM dbo.realtime t1 INNER JOIN
dbo.userinfo t2 ON t1.SiteNo = t2.SiteNo

GO
SET QUOTED_IDENTIFIER OFF
GO
SET ANSI_NULLS ON
GO
展开
 我来答
朱依东
2010-12-10
知道答主
回答量:2
采纳率:0%
帮助的人:0
展开全部
比如
select * from ...
insert into...表 values()
update table set ...
delete from ...

这些语句,都叫做sql脚本,也就是用sql语句组合起来的命令集。
SELECT t1.SiteNo,t2.UserName, t1.Absence中t1、t2都是表的命名,后面是调用表的属性SiteNo,UserName,Absence
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式