计算机sql英语,计算机专业英语教程第2版 第15期:什么是SQL

SQL (pronounced "ess-que-el") stands for Structured Query Language. SQL is used to communicate with a database. According to ANSI, it is the standard language for relational database management systems. SQL statements are used to perform tasks such as update data on a database, or retrieve data from a database. Some common relational database management systems that use SQL are: Oracle, Sybase, Microsoft SQL Server, Access, Ingres, etc. Although most database systems use SQL, most of them also have their own additional proprietary extensions that are usually only used on their system. However, the standard SQL commands such as "Select", "Insert", "Update", "Delete", "Create", and "Drop" can be used to accomplish almost everything that one needs to do with a database.

SQL代表结构化查询语言。SQL用于数据库会话。按照ANSI的标准,它是关系数据库管理系统的标准语言。SQL 语句用于更新或者检索数据库中的数据,使用SQL的常见的关系数据库管理系统有:Oracle、Sybase、Microsoft SQL Server、Access、Ingres 等等。尽管大多数的数据库系统都使用SQL,但是他们大多都有针对自己系统的额外扩展。然而,标准的 SQL 命令,例如“Select”、“Insert”、“Update”, “Delete”、“Create”和 “Drop”,可以用来完成数据库中所需的任何任务。

A relational database system contains one or more objects called tables. The data or information for the database are stored in these tables. Tables are uniquely identified by their names and are comprised of columns and rows. Columns contain the column name, data type, and any other attributes for the column. Rows contain the records or data for the columns. Here is a sample table called "weather".City, state, high, and low are the columns. The rows contain the data for this table:

一个关系数据库系统包含一个或者多个被称为“表”的对象。数据库中的数据或信息存储在这些表中。表由表名称来惟一标记,由列和行组成。列包含列名、数据类型和其他的全部列的属性。行包含列的数据或记录。下面是一个“天气”表的例子。

2f68abe935f13cfc351b542813b00264.pngThe select statement is used to query the database and retrieve selected data that match the criteria that you specify. Here is the format of a simple select statement:

选择讲句用来查询数据,检索根据你设定的条件所检索到的数据。下面是一个选择语句的格式:

8fa45fc7c0ca8912268e0dbe2da2883a.pngThe column names that follow the select keyword determine which columns will be returned in the results. You can select as many column names that you'd like, or you can use a "*" to select all columns.

关键字后而的列名决定了哪些列将在结果中出现。你可以根据需要选择任意的列名,或者使用“*”来选择全部列。

The table name that follows the keyword from specifies the table that will be queried to retrieve the desired results.

关键字from后面的表名确定了为得到结果所要检索的表。

The where clause (optional) specifies which data values or rows will be returned or displayed, based on the criteria described after the keyword where.

关键字where后面的从句基于标准的描述,where从句(可选项)限定了哪些数据或者行将会被查到或者显示。

The create table statement is used to create a new table. Here is the format of a simple create table statement:

生成表的语句用来生成一个新表,这是一个简单的生成表语句的格式:create table "tablename"

8a0b7d35e7e6a06bfb244ae4262676d4.pngNote: You may have as many columns as you'd like, and the constraints are optional.

注意:可以生成任意多的列,约束条件是可选项。

Example:

例如:

5cb3c42bccaf33a5536cef3cb34b5d31.png

To create a new table, enter the keywords create table followed by the table name, followed by an open parenthesis, followed by the first column name, followed by the data type for that column, followed by any optional constraints, and followed by a closing parenthesis. It is important to make sure you use an open parenthesis before the beginning table, and a closing parenthesis after the end of the last column definition. Make sure you separate each column definition with a comma. All SQL statements should end with a ";".

生成一个新表时,输入关键字create table,后而输入表名,接着是左括弧、第一列的列名、数据类型、其他可选的约束条件、右括弧。在表开始的地方使用左括弧,最后一列定义结束的地方使用右括弧很重要。必须用逗号隔开每一个列的定义。所有SQL语句结束时都有个分号。

The table and column names must start with a letter and can be followed by letters, numbers or underscores ê not to exceed a total of 30 characters in length. Do not use any SQL reserved keywords as names for tables or column names (such as "select", "create", "insert", etc).

表名、列名的第一个字符必须用字母,后面可以用字母、数字或者下划线——长度不要超过30个字符。不要用SQL的保留字(例如select、create、insert等等)作表名和列名。

Data types specify what the type of data can be for that particular column. If a column called "Last_ Name", is to be used to hold names, then that particular column should have a "varchar" (variable-length character) data type.

数据类型定义了指定列的数据的类型。如果一个列名为“姓用来存储名字,那这个列的数据类型为varchar (可变长度的字符)。

Note: Here are the most common data types:

注意:下面是最常用的数据类型:

char(size) Fixed-length character string. Size is specified in parenthesis. Max 255 bytes.

char(size) 定长字符串,括号里面设定长度,最长255字节

varchar(size) Variable-length character string. Max size is specified in parenthesis.

varchar(size) 不定长字符串,括弧里面限定了最大的长度

number(size) Number value with a max number of column digits specified in parenthesis.

number(size) 数位(括弧里面限定最大位数)

Date Date value

date 日期值

number(size, d) Number value with a maximum number of digits of "size" total, with a maximum number of "d" digits to the right of the decimal.

number(size,d) 数值(括弧里的size限定最大总位数,限定小数点以后的位数)

What are constraints? When tables are created, it is common for one or more columns to have constraints associated with them. A constraint is basically a rule associated with a column that the data entered into that column must follow. For example, a "unique" constraint specifies that no two records can have the same value in a particular column. They must all be unique. The other two most popular constraints are "not null" which specifies that a column can't be left blank, and "primary key". A "primary key" constraint defines a unique identification of each record (or row) in a table.

什么是约束条件?表建立以后,不同的列通常有相关的约束条件。列的相关约束条件是一个规则,所有输入本列的数据必须通守这一规则。例如,unique约束条件限定了这一列中不能有两个相同列值的记录。它们必须是惟一的。另外两个常见的约束条件是no null 和primary key,not null限制了列不能有空数据,primary key约束为每一条记录(或者行)定义了一个惟一的标志。

The insert statement is used to insert or add a row of data into the table.

插入语句用来在表中插入或增加一行数据。

To insert records into a table, enter the key words insert into followed by the table name, followed by an open parenthesis, followed by a list of column names separated by commas, followed by a closing parenthesis, followed by the keyword values, followed by the list of values enclosed in parenthesis. The values that you enter will be held in the rows and they will match up with the column names that you specify. Strings should be enclosed in single quotes, and numbers should not.

向表中插入数据时,关键字insert into后面依次是表名、左括弧、用逗号分开的不同列名、右括弧、关键字values,括弧里而的数值列表。输入的数值将按照指定的列名存储到一行中。字符串要用单引号,数字不用。

06fb0be6192e531389cf65a87ac50aff.pngIn the example below, the column name first will match up with the value 'Luke', and the column name state will match up with the value 'Georgia'.

在下面的例子中,列名为first的将被输入数值luke,列state将被输入Georgia。

例子:

Example:

e88f286e67c5df80ceacf67a215defc9.pngNote: All strings should be enclosed between single quotes: 'string'

注意:所有的字符串都要放在引号之间:“string”。

Updating Records

更新记录:

The update statement is used to update or change records that match a specified criteria. This is accomplished by carefully constructing a where clause.

更新语句用来按照某一标准更新或修改记录。这需要通过仔细构造一个where从句来实现。

7f07c265b3bf2876c4e4ad07a7a1ea57.pngExamples:

例如:

ef01976f926718f5057b5dabca2aff46.png

b30a12ed3904e0fb5335e0a722eb9a9f.pngDeleting Records

删除语句:

The delete statement is used to delete records or rows from the table.

删除语句用来从表中刪除记录或者行。

c70e3d0c3bd2062d33c637d7b1c9b74a.pngExamples:

例如:

eb24f3446a0656073f9faafe073d04da.pngTo delete an entire record/row from a table, enter "delete from" followed by the table name, followed by the where clause which contains the conditions to delete. If you leave off the where clause, all records will be deleted.

要从表中删除一条完整的记录或行,输入“delete from"。后面接着是表名,包含删除条件的where从句。如果没有where从句,表中所备记录都将被删掉。

The drop table command is used to delete a table and all rows in the table.

删除表的命令用来删除表和表中的全部记录。

To delete an entire table including all of its rows, issue the drop table command followed by the table name. Drop table is different from deleting all of the records in the table. Deleting all of the records in the table leaves the table including column and constraint information. Dropping the table removes the table definition as well as all of its rows.

要删除一个完整的表和里面所有的记录,输入drop table命令,后面接着是表名。刪除表与删除所有记录并不相同,删掉所存记录以后还剩下包含列和约束条件的表。刪除表则将记录和表的定义一起删掉了。

Example:

例如:

a5efdc6d24f5033dde71b4108a491c1c.png

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值