sqlite 建立 inner join 查询

前端之家收集整理的这篇文章主要介绍了sqlite 建立 inner join 查询前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

原文链接http://www.jb51.cc/article/p-weogoagi-sp.html

table 1 book

brief,price,type_id,author,book_name,id

table 2 booktype

detail,title,type_id

查询book表中的所有字段和booktype表中的title中的信息

用到 inner join

注意:是表与一个查询 inner join,也是就说 inner join 的两边对应的是一个查询和一张表,决不能是两张表否则会报错的


解一:
selectbook.*,booktype.title from
book
inner join
booktype
on book.type_id=booktype.type_id

注:book.*表示book中的所有字段


解二:

select book.*,b.title from
book
inner join
(select title,type_id from booktype) b//把select 查询变成表b
on book.type_id=b.type_id

补充:

当用到Count(列名)from (表名)一类的函数时如下

select count id from (select book.*,booktype.title from book inner join booktype on book.type_id=booktype.type_id ) as b

也要把查询转化成一个表的形式才行

原文链接:https://www.f2er.com/sqlite/200767.html

猜你在找的Sqlite相关文章