2015 4 10 sql資料庫的增刪改查

2022-05-08 12:09:11 字數 535 閱讀 7160

1.insert 插入

語法:insert[into]《表名》[列名]values《列值》

例:insert into student(姓名,性別,出生日期)values('王偉華','男','1983/6/18')

2.插入表

語法:insert into《已有的新錶》《列名》select《原表列名》from《原表名》

1.delete

語法:delete from 表名 where 列名=[列值]

例:delete from student where name='王偉華'

2.truncate

語法:truncate《表名》

1.update

語法:update《表名》set《列名=新值》where《更新條件》

例:update addresslist set 年齡=18 where 姓名='王偉華'

select

語法:select《列名》from《表名》[where《查詢條件表示式》][order by《排序的列名》[asc或desc]]

oracle資料庫自增

1 建立sequence create sequence seq seq1 minvalue 1 maxvalue 99999999999999 start with 1 increase by 1 chache 20 如果指定cache值,oracle就可以預先在記憶體裡面放置一些sequence...

php資料庫操作 增

接收insert form請求的資料,實現資料插入 include func.php 匯入常用的函式,自定義的js常用方法。在我的其他文章裡面有源 title post title content post content mail post mail date date y m d h i s 接...

資料庫自增型別

from 一 通過t sql 複製 如下 alter table 表名 add 列名 int identity 1,1 not null 這裡用到了identity關鍵字 indentity a,b a b均為正整數,a表示開始數,b表示步長,indentity 1,1 就代表從1開始,每次增加1 ...