1、數據定義語言 DDL
create table Student
(
sno varchar2(3) not null,
sname varchar2(8) not null,
ssex varchar2(2) not null,
sbirthday date,
sclass varchar2(5)
)
2、數據操做語言 :添加(insert into)、修改(update set)、刪除表中的數據(delete)
1. --增長數據
insert into student(sno,sname,ssex) values('102','張三','男');
--或者這樣寫
insert into student values('102','張三','男',sysdate,'95033');
2.--數據的修改
update student set ssex='女' where sno='102';
--若是不加where,即是修改整個表某列的屬性
--對某一列數據的加減
update student set sclass=sclass+1;
update 表名 set 列名=列名+1 where 條件
3.--數據的刪除
delete from student where sno=102;
delete from 表名 where 條件;
--不加where,即刪除整個表,可是效率低,可用truncate table 表名來刪除(先刪表,再建表)
例:truncate table student;
3、數據查詢語言 DQL:從表中獲取數據(查詢數據)。
--數據查詢
select * from 表名;
--根據條件找字段
select sno,sname from student where sclass='95031';
select 字段名 from 表名 where 條件
物理刪除與邏輯刪除數據庫