博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
连接查询
阅读量:4957 次
发布时间:2019-06-12

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

mysql4.1可嵌套多个查询

一、内连接查询

(1)delect bookid ,borrowTime,backTime,ifbak,bookname,author,price 

from tb_borrow,tb_bookinfo where tb_borrow.bookid=tb_bookinfo.id;

二、子查询

(1)带in或not in

select id,bookname,author

from tb_bookinfo where id in(select bookid from tb_borrow);

(2)带比较运算符的子查询

(1)select score from tb_grade where name='优秀';

(2)select * from  tb_student

    where score >= (select score from tb_grade where name='优秀')

(3)带exists   (not exists)

使用exist是关键字,内层查询语句不返回查询记录,而是返回一个真假值。返回真时:外层查询语句继续查询,返回false:外层查询不做任何查询或查不出任何记录;

select id,bookname,author,price from tb_bookinfo

where exists (select * from tb_borrow where tb_borrow.bookid=tb_bookinfo.id);

(4)any  或all

列名  比较运算符   any(子查询)

select * from tb_student1

where score > any(select score from tb_student1 where classid=13);

 

转载于:https://www.cnblogs.com/shanpao/p/7668562.html

你可能感兴趣的文章
go语言模板中的os.Stdout标准输出转化为string
查看>>
编译安装php
查看>>
Redis之 命令行 操作
查看>>
悲观锁 乐观锁 概念
查看>>
Java常用术语及区别
查看>>
Spring AOP详解(转)
查看>>
Photoshop CS6最新官方正式中文破解版(32位、64位)
查看>>
latex模板
查看>>
UCDOS点阵字库
查看>>
基于ARM的射频识别读卡器电路设计
查看>>
(转载)FPGA工程师:持守梦想or屈于现实
查看>>
15、Work原理及源码分析
查看>>
福大软工1816 · 第五次作业 - 结对作业2
查看>>
vue做的简单购物车
查看>>
算法总结
查看>>
后台自定义导航增加分类树N级下拉+利用JQUERY
查看>>
python导包的问题
查看>>
QTP 捕获对象模式切换
查看>>
poi操作Excel相关对象属性介绍及中级应用
查看>>
mysql数据类型
查看>>