douxie2007 2015-07-22 06:56
浏览 836
已采纳

如何在SQL INNER JOIN中使用AS?

I am new in Mysql. I have multiple tables and i want to join all of them. I use INNER JOIN for this.

"SELECT *
FROM table
               INNER JOIN table2
               ON table.client_id = table2.id

           WHERE table2.id= 113
           ORDER BY table.id DESC
           LIMIT 1 ";

Here i face a problem that i have a column name title in each table. I want to use AS in my command. Like in outlook table there is name of column is TITLE i want to use it as outlook_title. How it is possible?

I want to use echo to print data like this

echo '<h1>' .$row["client"]. '</h1>' ;
echo '<h1>' .$row["name"]. '</h1>' ;
echo '<h1>' .$row["name"]. '</h1>' ;
echo '<h1>' .$row["ation_title"]. '</h1>' ;
echo '<h1>' .$row["look_title"]. '</h1>' ;

Please help me

  • 写回答

2条回答 默认 最新

  • douwen4125 2015-07-22 07:06
    关注

    You said every table, what do I know:>

    Add other columns at your leisure.

    SELECT r.title as rtitle,c.title as ctitle,
    t.title as ttitle,a.title as atitle,o.title as otitle
    FROM og_ratings r 
    INNER JOIN og_companies c
    ON r.client_id = c.id
    INNER JOIN og_rating_types t
    ON r.rating_type_id = t.id
    INNER JOIN og_actions a
    ON r.pacra_action = a.id
    INNER JOIN og_outlooks o
    ON r.pacra_outlook = o.id
    WHERE c.id= 113
    ORDER BY r.id DESC
    LIMIT 1
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 perl MISA分析p3_in脚本出错
  • ¥15 k8s部署jupyterlab,jupyterlab保存不了文件
  • ¥15 ubuntu虚拟机打包apk错误
  • ¥199 rust编程架构设计的方案 有偿
  • ¥15 回答4f系统的像差计算
  • ¥15 java如何提取出pdf里的文字?
  • ¥100 求三轴之间相互配合画圆以及直线的算法
  • ¥100 c语言,请帮蒟蒻写一个题的范例作参考
  • ¥15 名为“Product”的列已属于此 DataTable
  • ¥15 安卓adb backup备份应用数据失败