Welcome 微信登录

首页 / 数据库 / MySQL / Oracle数据库的增、删、改、查

Oracle数据库中,数据的增、删、改、查,通过SQL语句实现SQL:结构化查询语言;特点:不区分大小写;字符串用单引号引起来;语句结束用分号表示结束;行注释,在语句的最前面加“--”块注释,分别在语句的前后加    /*  和  */SQL中常用的几类:一、数据定义语言 DDL:创建、修改、删除数据库语言。create table Student(sno varchar2(3) not null,sname varchar2(8) not null,ssexvarchar2(2) not null,sbirthday date,sclassvarchar2(5));-- Add comments to the table comment on table Studentis "学生表";-- Add comments to the columns comment on column Student.snois "学号(主建)";comment on column Student.snameis "学生姓名";comment on column Student.ssexis "性别";comment on column Student.sbirthdayis "生日";comment on column Student.sclassis "班级"; 二、数据操作语言 DML:添加(insert into)、修改(update   set)、删除表中的数据。(delete) 1.数据的添加:--增加数据insert into student(sno,sname,ssex) values("102","张三","男");--或者这样写insert into student values("102","张三","男",sysdate,"95033");select * from student2.数据的修改:--数据的修改update student set ssex="女" where sno="102";--如果不加where,便是修改整个表某列的属性--对某一列数据的加减update student set sclass=sclass+1;update 表名 set 列名=列名+1 where 条件--日期的加减1为日的加减13.数据的删除:--数据的删除delete student where sno=102;delete 表名 where 条件;--不加where,即删除整个表,但是效率低,可用truncate table 表名来删除(先删表,再建表)例:truncate table student;三、数据查询语言 DQL:从表中获取数据(查询数据)。--数据查询select * from student;select * from 表名;--根据条件找字段select sno,sname from student where sclass="95031";select 字段名 from 表名 where 条件更多Oracle相关信息见Oracle 专题页面 http://www.linuxidc.com/topicnews.aspx?tid=12本文永久更新链接地址