WEB开发网
开发学院数据库MySQL 掌握SQL四条最基本的数据操作语句 阅读

掌握SQL四条最基本的数据操作语句

 2006-04-07 10:44:30 来源:WEB开发网   
核心提示: insert into employees values (''bunyan'',''paul'',''1970-07-04'', ''boston'',12,7

insert into employees values

(''bunyan'',''paul'',''1970-07-04'',

''boston'',12,70000);

insert into employees values

(''john'',''adams'',''1992-01-21'',

''boston'',20,100000);

insert into employees values

(''smith'',''pocahontas'',''1976-04-06'',

''los angles'',12,100000);

insert into employees values

(''smith'',''bessie'',''1940-05-02'',

''boston'',5,200000);

insert into employees values

(''jones'',''davy'',''1970-10-10'',

''boston'',8,45000);

insert into employees values

(''jones'',''indiana'',''1992-02-01'',

''chicago'',null,null);

在最后一项中,我们不知道jones先生的工薪级别和年薪,所以我们输入null(不要引号)。null是sql中的一种特殊情况,我们以后将进行详细的讨论。现在我们只需认为null表示一种未知的值。

有时,像我们刚才所讨论的情况,我们可能希望对某一些而不是全部的列进行赋值。除了对要省略的列输入null外,还可以采用另外一种insert语句,如下:

insert into employees(

上一页  1 2 3 4 5 6 7 8 9 10  下一页

Tags:掌握 SQL 基本

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接