您好,登錄后才能下訂單哦!
一、數(shù)據(jù)定義語言 DDL
create table Student
(
sno varchar2(3) not null,
sname varchar2(8) not null,
ssex varchar2(2) not null,
sbirthday date,
sclass varchar2(5)
)
二、數(shù)據(jù)操作語言 :添加(insert into)、修改(update set)、刪除表中的數(shù)據(jù)(delete)
1. --增加數(shù)據(jù)
insert into student(sno,sname,ssex) values('102','張三','男');
--或者這樣寫
insert into student values('102','張三','男',sysdate,'95033');
2.--數(shù)據(jù)的修改
update student set ssex='女' where sno='102';
--如果不加where,便是修改整個(gè)表某列的屬性
--對(duì)某一列數(shù)據(jù)的加減
update student set sclass=sclass+1;
update 表名 set 列名=列名+1 where 條件
3.--數(shù)據(jù)的刪除
delete from student where sno=102;
delete from 表名 where 條件;
--不加where,即刪除整個(gè)表,但是效率低,可用truncate table 表名來刪除(先刪表,再建表)
例:truncate table student;
三、數(shù)據(jù)查詢語言 DQL:從表中獲取數(shù)據(jù)(查詢數(shù)據(jù))。
--數(shù)據(jù)查詢
select * from 表名;
--根據(jù)條件找字段
select sno,sname from student where sclass='95031';
select 字段名 from 表名 where 條件
物理刪除與邏輯刪除
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。