摘要:
SqlServer2008 数据库同步的两种方式 (发布、订阅) http://www.cnblogs.com/tyb1222/archive/2011/05/27/2060075.htmlSqlServer2008 数据库同步的两种方式(Sql JOB)http://www.cnblogs.com/tyb1222/archive/2011/05/27/2060075.html 阅读全文
摘要:
在修改Sql Server表结构时,常用到Alter语句,把一些常用的alter语句列举如下。1:向表中添加字段Alter table [表名] add [列名] 类型2: 删除字段Alter table [表名] drop column [列名]3: 修改表中字段类型 (可以修改列的类型,是否为空)Alter table [表名] alter column [列名] 类型4:添加主键Alter table [表名] add constraint [约束名] primary key( [列名])5:添加唯一约束Alter table [表名] add constraint [约束名] uniq 阅读全文
摘要:
http://www.cnblogs.com/yubinfeng/archive/2010/11/02/1867386.html查看所有表名:selectnamefromsysobjectswheretype='U'查询表的所有字段名:SelectnamefromsyscolumnsWhereID=OBJECT_ID('表名')select*frominformation_schema.tablesselect*frominformation_schema.viewsselect*frominformation_schema.columnsACCESS查看所有表 阅读全文