我有这样一个场景。有3个不同的列。用户名,硬币和钱包。我只想选择不同的硬币和钱包,如果有任何特定的用户。我怎样才能做到这一点。在下面的图片中,你可以看到我现在有什么和我想要什么。为此,我尝试使用子查询,但由于某些原因,它似乎无法正常工作。
eivnm1vs1#
你可以试着用union
select userid, coin as asset from tablename where coin is not null union select userid, wallet from tablename where wallet is not null
1条答案
按热度按时间eivnm1vs1#
你可以试着用union