Web 在线数据建模

12 2012 档案

摘要: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 [约束名] unique([列名])6:添加表中某列的默认值Alter table [表名] add constr 阅读全文
posted @ 2012-12-23 17:50 NetUML大数据搜索 阅读(1111) 评论(0) 推荐(1)
摘要:深入浅出UML类图作者:刘伟 ,发布于:2012-11-23,来源:CSDN在UML 2.0的13种图形中,类图是使用频率最高的UML图之一。Martin Fowler在其著作《UML Distilled: A Brief Guide to the Standard Object Modeling Language, Third Edition》(《UML精粹:标准对象建模语言简明指南(第3版)》)中有这么一段:“If someone were to come up to you in a dark alley and say, 'Psst, wanna see a UML diagr 阅读全文
posted @ 2012-12-14 14:10 NetUML大数据搜索 阅读(644) 评论(0) 推荐(0)

Web 在线数据建模