Visio 数据库关系图中 I1、I2、U1 表示什么?
我正在对数据库进行逆向工程,以在 Visio 中创建数据库 ER 图。当我在 Visio 中显示实体图左侧的表时,我看到列名称旁边的符号,但我不知道它们的含义。符号如U1、U2、l1、l2、l5...等。其他符号,如 PK(主键)和 FK(外键)也显示在同一区域,但这些对我来说显然是有意义的。
I am reverse engineering an database to create an database ER diagram in Visio. When I display the table in Visio, on the left hand side of the entity diagram, I see symbols next to the column names that I do not know what they mean. Symbols such as, U1, U2, l1, l2, l5...etc. Others symbols such as PK (primary key) and FK (foreign key) are also shown in the same area, but those obviously make sense to me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这些是其他类型的索引。
U1 = 唯一索引 1.....
I1 = Index 1......
下面是SQL Server中的例子
http://msdn.microsoft.com/en-us/library/ms188783.aspx
These are other types of indexes.
U1 = Unique Index 1.....
I1 = Index 1......
Here are examples in SQL Server
http://msdn.microsoft.com/en-us/library/ms188783.aspx