Oracle Query查询

您可以在 oracle 数据库中执行许多Query语句,例如Insert、Update、Delete、Alter Table、Drop 、Create和Select。

一、Oracle Select语句

Oracle Select语句用于从数据库中获取记录。例如:

SELECT * from customers;  

点击查询更多细节

二、Oracle Insert语句

Oracle Insert语句用于将记录插入表中。例如:

insert into customers values(101,'rahul','delhi');  

点击查询更多细节

三、Oracle Update语句

Oracle Update语句用于更新表的记录。例如:

update customers set name='bob', city='london' where id=101;  

点击查询更多细节

四、Oracle Delete语句

Oracle Delete语句用于从数据库中删除表的记录。例如:

delete from customers where id=101;  

点击查询更多细节

五、Oracle Truncate语句

Oracle Truncate语句用于截断或删除表的记录。它不会删除表结构。例如:

truncate table customers;  

点击查询更多细节

六、Oracle Drop语句

Oracle Drop语句用于删除表或视图。它没有结构和数据。例如:

drop table customers;  

点击查询更多细节

七、Oracle Create语句

Oracle Create语句用于创建表、视图、序列、过程和函数。例如:

CREATE TABLE customers    
( id number(10) NOT NULL,    
  name varchar2(50) NOT NULL,    
  city varchar2(50),  
CONSTRAINT customers_pk PRIMARY KEY (id)      
);   

点击查询更多细节

八、Oracle Alter语句

Oracle Alter语句 用于添加、修改、删除或删除表的列。让我们看一个在客户表中添加列的查询:

ALTER TABLE customers   
ADD age varchar2(50);   

点击查询更多细节

热门文章

优秀文章