把你目前查到结果集定义为一个临时表 tempTable 下面是如何查 SELECT * FROM tempTable where 关键字=‘’举例 select book_num,book_name,book_type from (select * from bookinfo ) as temptable where book_num=2
本文介绍了一种在SQL中使用临时表进行特定条件筛选的方法,通过创建临时表tempTable并展示如何根据关键字进行查询,具体示例为从bookinfo表中选择book_num等于2的记录。
把你目前查到结果集定义为一个临时表 tempTable 下面是如何查 SELECT * FROM tempTable where 关键字=‘’举例 select book_num,book_name,book_type from (select * from bookinfo ) as temptable where book_num=2
转载于:https://www.cnblogs.com/ToFlying/p/3272109.html

被折叠的 条评论
为什么被折叠?