博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
数据库---高级查询
阅读量:6324 次
发布时间:2019-06-22

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

高级查询:

    一:多表连接
    1.select Info.Code,Info.Name,Nation.Name from Info,Nation where Info.Nation = Nation.Code
    select * from Info,Nation
    2.join连接
    select * from Info join Nation on Info.Nation = Nation.Code
    
    二:多表联合
    select * from Info where Code='p001'union select * from Info where Nation='n001'
    三:子查询(无关子查询)
    select * from Info where Nation = (select Code from Nation where Name='汉族')
    select * from Info where Nation in (select Code from Nation where Name='汉族' or Name='苗族')
    四:子查询(相关子查询)
    select * from Car a  where a.Oil <(select avg(Oil) from Car b where b.Brand = a.Brand)
    
   

转载于:https://www.cnblogs.com/0927wyj/p/5139528.html

你可能感兴趣的文章
我的编程之路(十八) 团队开发
查看>>
Redis的消息通知
查看>>
Word2010插入页码分节符
查看>>
mysql benchmark基准测试
查看>>
JS获取中文拼音首字母,并通过拼音首字母高速查找页面内的中文内容
查看>>
SourceTree - 正在检查源... When cloning a repository, "Checking Source" spins forever
查看>>
基于android studio的快捷开发(将持续更新)
查看>>
json序列化时datetime的处理方法
查看>>
Mesos源码分析(1): Mesos的启动过程总论
查看>>
iOS开发UI篇—常见的项目文件介绍
查看>>
python2.0_day21_web聊天室一
查看>>
MySQL server has gone away 问题的解决方法
查看>>
使用BeanUtils设置属性转换String到Date类型
查看>>
C# DateTime和String转换
查看>>
js判断函数是否存在、判断是否为函数
查看>>
动态sql
查看>>
UVA 10564 Paths through the Hourglass[DP 打印]
查看>>
洛谷P1119 灾后重建[Floyd]
查看>>
将图片二进制流上传到服务器
查看>>
Struts2标签
查看>>