- 5
- 0
- 约4.99万字
- 约 57页
- 2017-08-13 发布于河南
- 举报
/**************************************************/
/* ORACLE 数据库 */
/**************************************************/
##########[ 简单的表操作 ]##########
// 创建一个简单的表
create table student(
name varchar2(20),
age number(3)
);
// 插入新记录
insert into student values(Tom, 18);
insert into student values(张三, 20);
insert into student values(李四, 22);
insert into student values(王五, 26);
// 查询所有记录
select * from student;
// 查看表结构
desc student;
// 删除表
drop table student;
// 删除表中所有的数据(保留表结构)
delete from student;
// 删除表中指定的数据
delete from student where age=20;
// 提交
commit;
####
您可能关注的文档
最近下载
- 幼儿园大班语言《是谁嗯嗯在我的头上》课件.pptx
- 高考生物必背85个知识点分析.doc VIP
- 高考生物必背85个知识点总结.doc VIP
- 高考必背的85个重要生物知识点总结.docx VIP
- 2025届高考生物必背的85个重要知识点总结.docx VIP
- 中国文化概况A-Glimpse-of-Chinese-Culture(修订版)Chapter-8.ppt VIP
- 2026年高考生物必背85个重要知识点总结汇编.pdf VIP
- 预防高处坠落事故专项施工方案.docx VIP
- AutoCAD2022实用教程全套完整教学课件.pptx
- Soundcraft声艺Signature 22MTK Outline Dimensions file)说明书用户手册.pdf
原创力文档

文档评论(0)