合并多个唯一的MySQL表并按一列排序

合并多个唯一的MySQL表并按一列排序,第1张

合并多个唯一的MySQL表并按一列排序

试试这个:

SELECt * from (SELECt banned as Punisher, banned_by as Punished, ban_reason as Reason, ban_expires_on  as Expire, ban_time as Date  FROM mb_bans UNIOnSELECt kicked as Punisher, kicked_by as Punished, kick_reason as Reason, NULL  as Expire, kick_time as Date FROM mb_kicks UNIOnSELECt muted as Punisher, muted_by as Punished, mute_reason as Reason, mute_expires_on  as Expire, mute_time as Date  FROM mb_mutes UNIOnSELECt warned as Punisher, warned_by as Punished, warn_reason as Reason, NULL  as Expire,  warn_time as Date FROM mb_warnings) d order by d.Date DESC;

编辑

我如何获得记录类型? (即,返回的结果是否来自禁令表,静音表,反冲表等)

SELECt * from (    SELECt banned as Punisher, banned_by as Punished, ban_reason as Reason, ban_expires_on  as Expire, 'ban' as TableType, ban_time as Date  FROM mb_bans     UNIOn    SELECt kicked as Punisher, kicked_by as Punished, kick_reason as Reason, NULL  as Expire, 'kick' as TableType, kick_time as Date FROM mb_kicks     UNIOn    SELECt muted as Punisher, muted_by as Punished, mute_reason as Reason, mute_expires_on  as Expire, 'mute' as TableType, mute_time as Date  FROM mb_mutes     UNIOn    SELECt warned as Punisher, warned_by as Punished, warn_reason as Reason, NULL  as Expire,  'warn' as TableType, warn_time as Date FROM mb_warnings    ) d order by d.Date DESC;


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4953512.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-13
下一篇 2022-11-13

发表评论

登录后才能评论

评论列表(0条)

保存