douju2014 2018-04-14 07:21
浏览 182
已采纳

如何在Mysql Union中识别表

I Have Query As the following

SELECT * FROM ( 
    (
        SELECT * FROM comments 
        WHERE user_id = '66' AND product_id = '3' 
        AND status = 1 
    ) 
    UNION ALL 
    (
        SELECT * FROM comments_reply 
        WHERE user_id = '66' AND product_id = '3'
        AND status = 1 ) 
    ) results 
ORDER BY datetime DESC

Which Gets Data from two tabel and shows it in order to datetime.now frontside i am showing this data. but now i wants to know that which data is came from which table.

because I am calling a modal to show a comment in modal by this

<span class="showcomment text-danger"
     data-cid = <?=$row[0]?>>view Comment</span>

But $row[0] Gives me an id But How can i identify that this id is came from which Table ?

  • 写回答

3条回答 默认 最新

  • duanlan8763 2018-04-14 07:26
    关注

    I would rewrite your query as with tablename that you want

    SELECT 'comments' as table_name, col1, col2,... coln FROM comments c
    WHERE user_id = '66' AND product_id = '3' 
    AND status = 1  UNION ALL 
    SELECT 'comments_reply' as table_name, col1, col2,... coln FROM comments_reply cr
    WHERE user_id = '66' AND product_id = '3'
    ORDER BY col DESC
    

    And, i suspect if you have user_id, product_id has numeric type then you should use only values without single quote.

    where user_id = 66 AND product_id = 3
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥60 求一个简单的网页(标签-安全|关键词-上传)
  • ¥35 lstm时间序列共享单车预测,loss值优化,参数优化算法
  • ¥15 基于卷积神经网络的声纹识别
  • ¥15 Python中的request,如何使用ssr节点,通过代理requests网页。本人在泰国,需要用大陆ip才能玩网页游戏,合法合规。
  • ¥100 为什么这个恒流源电路不能恒流?
  • ¥15 有偿求跨组件数据流路径图
  • ¥15 写一个方法checkPerson,入参实体类Person,出参布尔值
  • ¥15 我想咨询一下路面纹理三维点云数据处理的一些问题,上传的坐标文件里是怎么对无序点进行编号的,以及xy坐标在处理的时候是进行整体模型分片处理的吗
  • ¥15 一直显示正在等待HID—ISP
  • ¥15 Python turtle 画图