博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Oracle数据库,数据的增、删、改、查
阅读量:6316 次
发布时间:2019-06-22

本文共 1435 字,大约阅读时间需要 4 分钟。

oracle数据库中,数据的增、删、改、查,通过SQL语句实现

SQL:结构化查询语言;

特点:不区分大小写;字符串用单引号引起来;语句结束用分号表示结束;

行注释,在语句的最前面加“--”

块注释,分别在语句的前后加    /*  和  */

 

SQL中常用的几类:

一、数据定义语言 DDL:创建、修改、删除数据库语言。

create table Student(  sno       varchar2(3) not null,  sname     varchar2(8) not null,  ssex      varchar2(2) not null,  sbirthday date,  sclass    varchar2(5));-- Add comments to the table comment on table Student  is '学生表';-- Add comments to the columns comment on column Student.sno  is '学号(主建)';comment on column Student.sname  is '学生姓名';comment on column Student.ssex  is '性别';comment on column Student.sbirthday  is '生日';comment on column Student.sclass  is '班级';

 

二、数据操作语言 DML:添加(insert into)、修改(update   set)、删除表中的数据。(delete)

 1.数据的添加:insert into 表名(字段名) values(对应的数据)

--增加数据insert into student(sno,sname,ssex) values('102','张三','男');--或者这样写insert into student values('102','张三','男',sysdate,'95033');

2.数据的修改:update 表名 set 修改的的字段 wiere 条件

--数据的修改update student set ssex='女' where sno='102';--如果不加where,便是修改整个表某列的属性--对某一列数据的加减update student set sclass=sclass+1;update 表名 set 列名=列名+1 where 条件--日期的加减1为日的加减1

3.数据的删除:

delete 表名 where 条件;
--数据的删除delete student where sno=102;--不加where,即删除整个表,但是效率低,可用truncate table 表名    来删除(先删表,再建表)例:truncate table student;

 

 

三、数据查询语言 DQL:从表中获取数据(查询数据)。select * from 表名;

--数据查询select * from student;--根据条件找字段select sno,sname from student where sclass='95031';select 字段名 from 表名 where 条件

 

转载于:https://www.cnblogs.com/zhaotiancheng/p/6165728.html

你可能感兴趣的文章
javascript实现保留两位小数的多种方法
查看>>
Google Map Api V3 系列之 导航(包括清除线路)
查看>>
DELPHI中四种EXCEL访问技术实现
查看>>
xmlrpc
查看>>
20145337《Java程序设计》第四周学习总结
查看>>
【leetcode】213. House Robber II
查看>>
关于Netty的一些理解、实践与陷阱
查看>>
如何使用Kubernetes部署Nodejs的Http服务
查看>>
磁盘分区
查看>>
Jrules sample server 配置
查看>>
Git无法使用
查看>>
PHP评分系统
查看>>
hdu 5195 DZY Loves Topological Sorting BestCoder Round #35 1002 [ 拓扑排序 + 优先队列 || 线段树 ]...
查看>>
转载 :TinyMce介绍与使用心得
查看>>
leetcode-717-1-bit and 2-bit Characters
查看>>
数据仓库开发——Kettle使用示例
查看>>
人工智能的到来,快递将面临很大的整顿!
查看>>
杀进程常用命令
查看>>
实现线程池(二)最简单的线程池
查看>>
C# 判断网站是否能访问或者断链
查看>>