溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

SQL增刪改查

發(fā)布時(shí)間:2020-06-26 16:47:16 來源:網(wǎng)絡(luò) 閱讀:421 作者:liugxxx 欄目:MySQL數(shù)據(jù)庫

一、數(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 條件
物理刪除與邏輯刪除

  1. 物理刪除記錄,即是會(huì)將數(shù)據(jù)庫中的數(shù)據(jù)記錄直接清除(也可以說是磁盤上的刪除),會(huì)釋放出物理空間,也將不能再從數(shù)據(jù)庫中搜索到刪去的數(shù)據(jù)記錄;數(shù)據(jù)庫中使用delete語句的刪除就是物理刪除
  2. 邏輯刪除記錄,不會(huì)直接刪除數(shù)據(jù)庫中的數(shù)據(jù),僅是通過某些手段屏蔽被邏輯刪除的數(shù)據(jù)在前臺(tái)的顯示,不會(huì)釋放物理空間,并且還可以從數(shù)據(jù)庫中查得數(shù)據(jù)。
向AI問一下細(xì)節(jié)

免責(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)容。

AI