博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Oracle数据库的一些简单sql问题
阅读量:5300 次
发布时间:2019-06-14

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

常用三种数据库(sql service,mysql ,oracle)的数据备份

--数据备份

--oracle
create table studentback
as
select *from student
--mysql
create table studentback
select *from student
--SQL service
select *into studentback
from student

 

--查询4-6条数据库

select *from
 select temp.*,rownum rn from
 (
   select *from student
 )temp
 where rownum<=6
)where rn >=4
--查询id=2的用户的数据
select *from
select name,age,address,rownum rn from student
)temp
where rn=2
--查询name,age均不重复的数据记录
--利用分组 获取信息
select  name,age,count(name|| age) from student
group by name,age
having (count(name|| age)<2)

 

--查询不重复的学生信息

select distinct id,name,age,address from student

 

转载于:https://www.cnblogs.com/sujulin/p/8052479.html

你可能感兴趣的文章
ztree根据关键字模糊搜索
查看>>
求一个环形数组最大子数组的和
查看>>
http://www.cnblogs.com/xqin/p/4862849.html
查看>>
科技写作:何时用英文写作?
查看>>
微服务核心20讲 读书笔记
查看>>
努力有什么用
查看>>
nginx_tomcat
查看>>
WEB前端面试题查询整理
查看>>
【CodeForces - 598D】Igor In the Museum(bfs)
查看>>
Spark-Mllib中各分类算法的java实现(简易教程)
查看>>
给你的HTTPS添加Let's Encrypt证书
查看>>
2014年总结
查看>>
图解分析mochiweb web server
查看>>
netstat 2
查看>>
as3.0 [Embed]标签嵌入外部资源
查看>>
Python 发 邮件
查看>>
mysql忘记密码的解决办法
查看>>
全面分析Java的垃圾回收机制2
查看>>
ssh中文乱码解决
查看>>
Day1:初识Python
查看>>