sql语句中怎么把查询出来的字段数据当表名再进行查询?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sql语句中怎么把查询出来的字段数据当表名再进行查询?相关的知识,希望对你有一定的参考价值。
例如:select * from (select tablename from a where id=1 )。我想做的是从括号中的a表中获取数据id为1的tablename 的数据当表名来查询 ,实际语句就是 select * from TA , TA就是从括号中tablename数据,这个语句该怎么写呢,用一句sql
TABLE 语句
具体语法:TABLE table_name [ORDER BY column_name] [LIMIT number [OFFSET number]]
其实从语法上看,可以排序,也可以过滤记录集,不过比较简单,没有 SELECT 那么强大。
示例 1
简单的建一张很小的表 y1,记录数为 10 条。表 t1,插入 10 条记录
mysql-(ytt/3305)->create table t1 (r1 int,r2 int);
Query OK, 0 rows affected (0.02 sec)
mysql-(ytt/3305)->insert into t1
with recursive aa(a,b) as (
select 1,1
union all
select a+1,ceil(rand()*20) from aa where a < 10
) select * from aa;
Query OK, 10 rows affected (0.00 sec)
Records: 10 Duplicates: 0 Warnings: 0
简单全表扫描mysql-(ytt/3305)->select * from t1;+------+------+| r1 | r2 |+------+------+| 1 | 1 || 2 | 9 || 3 | 9 || 4 | 17 || 5 | 17 || 6 | 16 || 7 | 6 || 8 | 1 || 9 | 10 || 10 | 3 |+------+------+10 rows in set (0.00 sec)TABLE 结果mysql-(ytt/3305)->table t1;+------+------+| r1 | r2 |+------+------+| 1 | 1 || 2 | 9 || 3 | 9 || 4 | 17 || 5 | 17 || 6 | 16 || 7 | 6 || 8 | 1 || 9 | 10 || 10 | 3 |+------+------+10 rows in set (0.00 sec)
看下 table 的执行计划mysql-(ytt/3305)->explain table t1 order by r1 limit 2\\G*************************** 1. row *************************** id: 1 select_type: SIMPLE table: t1 partitions: NULL type: ALLpossible_keys: NULL key: NULL key_len: NULL ref: NULL rows: 10 filtered: 100.00 Extra: Using filesort1 row in set, 1 warning (0.00 sec)
其实可以看到 TABLE 内部被 MySQL 转换为 SELECT 了。mysql-(ytt/3305)->show warnings\\G*************************** 1. row *************************** Level: Note Code: 1003Message: /* select#1 */ select `ytt`.`t1`.`r1` AS `r1`,`ytt`.`t1`.`r2` AS `r2` from `ytt`.`t1` order by `ytt`.`t1`.`r1` limit 21 row in set (0.00 sec)
那其实从上面简单的例子可以看到 TABLE 在内部被转成了普通的 SELECT 来处理。示例 2应用于子查询里的子表。这里要注意,内表的字段数量必须和外表过滤的字段数量一致。克隆表 t1 结构mysql-(ytt/3305)->create table t2 like t1;Query OK, 0 rows affected (0.02 sec)
克隆表 t1 数据mysql-(ytt/3305)->insert into t2 table t1;Query OK, 10 rows affected (0.00 sec)Records: 10 Duplicates: 0 Warnings: 0
table t1 被当做内表,表 t1 有两个字段,必须同时满足 t2 检索时过滤的字段也是两个。mysql-(ytt/3305)->select * from t2 where (r1,r2) in (table t1);+------+------+| r1 | r2 |+------+------+| 1 | 1 || 2 | 9 || 3 | 9 || 4 | 17 || 5 | 17 || 6 | 16 || 7 | 6 || 8 | 1 || 9 | 10 || 10 | 3 |+------+------+10 rows in set (0.00 sec)
注意:这里如果过滤的字段数量和子表数量不一致,则会报错。
把select tablename from a where id=1 查询到的值给一个变量
下面select * from 变量追问
hibernate + mysql 能不能实现呢
本回答被提问者和网友采纳 参考技术B 你代码是对的,就是后面加个临时表名就好了select * from (select tablename from a where id=1 ) temp 参考技术C select a.tablename from (select tablename from a where id=1 ) a; 参考技术D select * from (select tablename from a where id=1 )tb1
sql查询语句如何能把不符合条件的数据也一并查出来
例如:表A数据有9条,表B数据有10条,where A.条件=B.条件,当他们关联起来一起查询的时候,如何把多出的1条也查出来
select * from b left join a on a.条件=b.条件以多的那张表作为left join 左边的那个,这里也就是b表 参考技术A 使用left join
select * from b left join a on A.条件=B.条件
b表会全部显示出来,多出的一条,B表内容有数据,A表相应的字段是空(null) 参考技术B where是条件判断,只能通过条件筛选。
多的数据不行查出来,除非b中9条数据和a一样。 参考技术C select * from B left join A on A.条件=B.条件 参考技术D where A.条件(+)=B.条件
以上是关于sql语句中怎么把查询出来的字段数据当表名再进行查询?的主要内容,如果未能解决你的问题,请参考以下文章