我想运行一个select语句,它包含4个不同的列,让我们称它们为col1、col2、col3、col4,并按字母顺序显示每个列中的所有文本,同时忽略任何重复项。
例如,该表包含以下数据。
col1 | col2 | col3 | col4
===============================================
animal | | |
create | animal | |
destroy | | |
giant | create | animal |
create | destroy | belt |
animal | giant | animal | create
animal | | |
预期结果应为:
动物
带
创造
破坏
巨人
1条答案
按热度按时间v64noz0r1#
你可以用
UNION
:编辑:
避免
NULL
和空字符串: