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的两边对应的是一个查询和一张表,决不能是两张表否则会报错的
解一:
select book.*,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
补充:
当用到C ount(列名) 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/202902.html