如何将 union all 与手动值(不是来自另一个表)一起使用?

2021-09-14 00:00:00 sql union sql-server union-all

我想将 union all 与手动值一起使用,而不是来自另一个表.这些值是:

I want to use union all with manual value, not from another table. And the values are:

|cSatuan1|cSatuan2|nkonversi|
=============================
|   LTR  |   PCS  |    1    |
|   PCS  |   LTR  |    1    |

我用自己的方式进行了查询,但出现错误.这是查询:

I've made the query with my own way, but it gets error. here is the query:

SELECT csatuan2, csatuan1, nkonversi
FROM ms_metriks union all select 'LTR','PCS','1','PCS','LTR','1'

你能告诉我我的查询有什么问题吗?什么是正确的查询?

Can you tell me what's wrong with my query, and what is the right query?

推荐答案

试试这个:

SELECT csatuan2,csatuan1,nkonversi FROM ms_metriks 
UNION ALL SELECT 'LTR','PCS','1'
UNION ALL SELECT 'PCS','LTR','1'

相关文章