天天看點

Oracle資料庫,資料的增、删、改、查

oracle資料庫中,資料的增、删、改、查,通過SQL語句實作

SQL:結構化查詢語言;

特點:不區分大小寫;字元串用單引号引起來;語句結束用分号表示結束;

行注釋,在語句的最前面加“--”

Oracle資料庫,資料的增、删、改、查

塊注釋,分别在語句的前後加    

Oracle資料庫,資料的增、删、改、查

SQL中常用的幾類:

一、資料定義語言 DDL:建立、修改、删除資料庫語言。

create table Student
(
  sno       varchar2(3) not null,
  sname     varchar2(8) not null,
  ssex      varchar2(2) not null,
  sbirthday date,
  sclass    varchar2(5)
)
;
-- Add comments to the table 
comment on table Student
  is '學生表';
-- Add comments to the columns 
comment on column Student.sno
  is '學号(主建)';
comment on column Student.sname
  is '學生姓名';
comment on column Student.ssex
  is '性别';
comment on column Student.sbirthday
  is '生日';
comment on column Student.sclass
  is '班級';      

二、資料操作語言 DML:添加(insert into)、修改(update   set)、删除表中的資料。(delete)

 1.資料的添加:insert into 表名(字段名) values(對應的資料)

--增加資料
insert into student(sno,sname,ssex) values('102','張三','男');
--或者這樣寫
insert into student values('102','張三','男',sysdate,'95033');
      

2.資料的修改:update 表名 set 修改的的字段 wiere 條件

--資料的修改
update student set ssex='女' where sno='102';
--如果不加where,便是修改整個表某列的屬性

--對某一列資料的加減
update student set sclass=sclass+1;
update 表名 set 列名=列名+1 where 條件
--日期的加減1為日的加減1      

3.資料的删除:

delete 表名 where 條件;      
--資料的删除
delete student where sno=102;
--不加where,即删除整個表,但是效率低,可用truncate table 表名    來删除(先删表,再建表)
例:truncate table student;      

 

三、資料查詢語言 DQL:從表中擷取資料(查詢資料)。select * from 表名;

--資料查詢
select * from student;--根據條件找字段
select sno,sname from student where sclass='95031';
select 字段名 from 表名 where 條件      

轉載于:https://www.cnblogs.com/zhaotiancheng/p/6165728.html