Asp.net 数据库表关系
我正在寻找一种在我的数据库中建立一些表的方法。
我想将每个登录的用户连接到他们留下的评论。应该有2或3张桌子。但我不知道如何实现这一目标。有谁知道我可以在哪里阅读和学习如何有效地建立表关系?
I am looking at a way to establish a few tables in my database.
I want to connect every user that logs in to the comments that they leave. There should be 2 or 3 tables. But I have no understanding on how to achieve this. Does anyone know where I can read and learn about how to build table relationships effectively?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该了解“连接”的工作原理。他们将定义您稍后访问数据的方式。
看看这个网站:
http://www.sql-tutorial.net/SQL-JOIN.asp
即使您没有 MS Access,这也是一个很好的教程,可以帮助您掌握创建表和定义关系的方法。
http:// /office.microsoft.com/en-us/training/design-tables-for-a-new-access-2007-database-RZ010286445.aspx
另外,“SQL for Dummies”也是一个很好的参考资料。在亚马逊上获取二手副本。
You should understand how 'joins' work. They will define how you access your data later.
Check out this site:
http://www.sql-tutorial.net/SQL-JOIN.asp
Even if you don't have MS Access, this is a good tutorial for getting a handle on creating tables and defining relationships.
http://office.microsoft.com/en-us/training/design-tables-for-a-new-access-2007-database-RZ010286445.aspx
Also, "SQL for Dummies" is a great reference to have. Get a used copy on Amazon.
以下是 SQL Server 2005 的演练: http:// /dotnetguts.blogspot.com/2007/10/basics-of-sql-server-2005.html
Here's a walk-through for SQL Server 2005: http://dotnetguts.blogspot.com/2007/10/basics-of-sql-server-2005.html