oracle 操作表的sql

2021-07-22 20:49:22 字數 832 閱讀 4221

--新建表:

create table table1( id varchar(300) primary key, name varchar(200) not null);

--插入資料

insert into table1 (id,name) values ('aa','bb');

--更新資料

update table1 set id = 'bb' where id='cc';

--刪除資料

delete from table1 where id ='cc';

--刪除表

drop table table1;

--修改表名:

alter table table1 rename to table2;

--表資料複製:

insert into table1 (select * from table2);

--複製表結構:

create table table1 select * from table2 where 1>1;

--複製表結構和資料:

create table table1 select * from table2;

--複製指定字段:

create table table1 as select id, name from table2 where 1>1;

--條件查詢:

select id,name (case gender when 0 then '男' when 1 then 『女』 end ) gender from table1

操作表的sql語法 ORACLE

1.新增字段 alter table table name add column name datatype 2.更改字段資料型別 alter table table name modify column name datatype 3,刪除字典 alter table table name dro...

oracle表的操作sql語句

一 非空 預設約束的増刪改 檢視自己使用者的所有表 select from user tab comments www.2cto.com 建立表 create table cqytest id number 1 username varchar2 11 password varchar2 11 最後...

oracle表的操作SQL語句

這篇文章的內容包括 表的増刪改查,欄位的増刪改查,主鍵 外來鍵 唯 一 非空 預設約束的増刪改 檢視自己使用者的所有表 select from user tab comments www.2cto.com 建立表 create table cqytest id number 1 username v...