sql查询出的结果不通过数据库修改
发布网友
发布时间:2022-04-12 10:52
我来回答
共2个回答
热心网友
时间:2022-04-12 12:22
select 'name', 'id'
union all
select * from table1
前提是 table1 的列数等于 'name', 'id'的个数
如果table1有3列的话
table1表结构
col1 int
col2 int
col3 int
语句就要这样写
select 'col1', 'col2','col3'
union all
select * from table1
唯一要记住的就是列数一定要相同
有一个解决办法就是
select 'col1', 'col2','col3'
union all
select col1, col2, col3 from table1
两种写法都要求列数一样
select 'col1'
这种写法很常见,输出一个内容是col1的常量字符串
select 'col1', 'col2','col3'
就是输出一个只有一行3列的数据集
使用union做并集查询
后面加一个all是保留顺序,将虚拟输出的一行记录永远保持在top 1的位置
热心网友
时间:2022-04-12 13:40
数据库里的字段都有字段名吧.
SELECT abc的字段名 name,123的字段名 id
from 表