摘要:
--视图的主意点:不能和表的名称相同,如果某一列为函数,表达式,常量或者与来自多张表的列名相同,必须为列定义名称,不能在试图上创建索引if exists(select 1 from sys.sysobjects where [name]='view_recordInfo') drop view view_recordInfogocreate view view_recordInfoas select 记录编号=r.Recordld,会员卡号=r.BeginTime,电脑编号=p.PCId from recordInfo r inner join PCInfo p on r.PC 阅读全文
摘要:
JavaScript:写入 HTML 输出document.write("This is a heading");document.write() 仅仅向文档输出写内容。如果在文档已完成加载后执行 document.write,整个 HTML 页面将被覆盖JavaScript:对事件作出反应点击这里... 阅读全文