从 SQL 开始

发布于 2024-08-28 12:42:57 字数 158 浏览 6 评论 0 原文

我热衷于通过 SQL 进入数据库世界,但我不知道是否有任何重要的先决条件,而且我只知道 C# 和 Java。

除了这些,我还需要什么工具?我有 Visual Studio 2008 和 SQL Server Management Studio。我还需要什么?是否需要下载服务器操作系统?

I am enthusiastic to enter the world of Databases through SQL, but I don't know if there's prerequisites of any significance and I only know C# and Java.

Besides these, what tools do I need? I have Visual Studio 2008 and SQL Server Management Studio. What else do I need? Is it necessary to download a server OS?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(7

走过海棠暮 2024-09-04 12:42:57

一定要安装免费数据库之一(Oracle Express、SQL Server Express)。这两个我都用过。您可能还想查看此免费教程。它将帮助您学习 SQL 语法。

Definitely install one of the free databases (Oracle Express, SQL Server Express). I have used both of those. You might also want to check out this free tutorial. It will help you learn SQL syntax.

此刻的回忆 2024-09-04 12:42:57

我建议您尝试 SQL Server Express,如果您使用 C# 进行开发,它是最容易使用的服务器。如果您想使用 Java 学习 SQL,几乎任何数据库都可以。

数据库服务器是一个像任何其他软件一样的软件,您必须通过自己的程序与其进行通信,建立连接,抛出 SQL 命令并解释其结果。如果你只想学习SQL,你也可以为所选的数据库服务器安装一个客户端并通过它进行学习,之后你可以尝试将你的程序连接到该数据库。在这种情况下 SQLite 会非常适合你。

I recommend you to try SQL Server Express, it is the easiest server to work with if you are developing with C#. If you would like to learn SQL using Java almost any data base would be good.

A data base server it's a software like any other, you will have to communicate with it through your own program, making a connection, throwing SQL commands and interpreting its results. If you only wanted to learn SQL you also could install a client for the chosen data base server and learn through it, after that you could try to connect your program to this data base. In this case SQLite would work pretty good for you.

玉环 2024-09-04 12:42:57

Visual Studio 2008 和 SQL Server Express 足以学习关系数据库管理系统 (RDBMS) 的基础知识。您可以学习 T-SQL(SQL Server 的 ANSI-SQL 方言)架构设计、对象关系映射等。 SQL Express 可在 Windows XP、Vista 和 Windows 7 上运行。Oracle

还提供 Express 版本,还有其他免费选项,例如 MySQL 和 SQLite。

Visual Studio 2008 and SQL Server Express are sufficient to learn the basics of a Relational Database Management System (RDBMS.) You can learn T-SQL (SQL Server's ANSI-SQL dialect,) schema design, Object-Relational Mapping, and more. SQL Express runs on Windows XP, Vista and Windows 7.

Oracle also provides an Express version, and there are other free options such as MySQL and SQLite.

软糖 2024-09-04 12:42:57

您不需要特殊的服务器操作系统。如果您只是用它来学习,SQL Server 将在您的开发计算机上运行得很好。您需要确保除了 Management Studio 之外还安装了 SQL Server。

You don't need a special server OS. SQL Server will run just fine on your development machine if you are just using it to learn. You'll want to make sure that SQL Server is installed in addition to Management Studio.

↙温凉少女 2024-09-04 12:42:57

您可能还想尝试 MySQLPostgreSQL。它们都是免费的,比 SQL Server 更容易安装,并且可以在更多平台上运行。

You might also want to try either MySQL and PostgreSQL. They're both free, much easier to install than SQL Server, and run on more platforms.

凡尘雨 2024-09-04 12:42:57

首先,我会在这里查看 W3 教程: http://www.w3schools.com/sql /default.asp

我使用 MySQL ,还获得了 Workbench 和 WAMP(或 LAMP)。然后开始建造!做一些你会用到的东西是件好事。

To start, I would look at the W3 tutorial here: http://www.w3schools.com/sql/default.asp .

I used MySQL , also get the Workbench and WAMP(or LAMP). Then start building! It's good to do something you would use.

瑾兮 2024-09-04 12:42:57

SQL Server 将在您的开发系统上运行,并且 SQL Server Management Studio 2008 是在 SQL 2008 中使用的一个很好的工具。

但是,如果您想通过网络进行连接,则需要配置网络区域表面以接受 TCP 客户端连接。

SQL Server will run on your development system, and SQL Server Management Studio 2008 is a good tool to work with in SQL 2008.

If you want to connect through your network though, you'll need to configure the Network Area Surface to accept TCP Clients connections.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文