作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
<分区>
我想从表中检索表记录下面是我解释清楚的希望你明白
这是我尝试过的方法,但没有得到预期的结果。
表一
----------------------------------------------------------------------------
tables | id
----------------------------------------------------------------------------
test 1
pure 2
root 3
link 4
----------------------------------------------------------------------------
测试表
----------------------------------------------------------------------------
id | name | gender
----------------------------------------------------------------------------
1 jack m
2 dude m
3 crop m
4 pert m
----------------------------------------------------------------------------
我的查询使用表检索测试表
select * from(select tables from table1 where id=1) as info;
结果
----------------------------------------------------------------------------
tables
----------------------------------------------------------------------------
test
----------------------------------------------------------------------------
预期输出
----------------------------------------------------------------------------
id | name | gender
----------------------------------------------------------------------------
1 jack m
2 dude m
3 crop m
4 pert m
----------------------------------------------------------------------------
我是一名优秀的程序员,十分优秀!