试图将 2 列组合成一个不同的结果

Trying to combine 2 columns into one distinct result

我正在尝试将来自不同表格的 2 行连接成一个结果。这是我目前拥有的代码...

    SELECT CONCAT(C.Correct_Answer, I.Incorrect_Answers) AS Answers
FROM Cor_A AS C, Inc_A AS I

这就是它 returns

Answers
----------------------------
45
410
450
4Green
4Red
4Potato
4Yellow
40
42

然而,这不是我想要的。 如何让它们在单独的记录中达到 return?

4
5
10
50
Green
Red
Potato
Yellow

(应该是 "Blue")

感谢大家的帮助,如您所知,我是新手...

这最终会 return 两个字段中的所有记录,但如果一条记录很常见,它 return 只有一条记录

SELECT Correct_Answer as Answer 
  FROM Cor_A 
UNION 
SELECT Incorrect_Answers 
  FROM Inc_A;