SQL語句這樣的寫法是否存在有關問題

來源:互聯網
上載者:User
SQL語句這樣的寫法是否存在問題
select * from (select * from xf_art where flag=3 order by add_time desc) a,(select id userid,username from xf_usr where flag!=9 ) u where a.xfuid=u.userid order by a.add_time desc

以上的sql語句是我一個已離職的同事寫,運行正常,但是怎麼看都覺得有點彆扭,SQL語句這樣的寫法是否存在問題呢?問題再在哪裡(我現在也說不出來,所以請教各位了)

------解決方案--------------------
語句沒問題,效率可能有些問題,用explain查一下。
SQL code
explain select * from (select * from xf_art where flag=3 order by add_time desc) a,(select id userid,username from xf_usr where flag!=9 ) u where a.xfuid=u.userid order by a.add_time desc
------解決方案--------------------
沒有問題,從效能來看,第一個order by add_time desc可以不需要。
------解決方案--------------------
這樣的sql語句沒問題 是可以啟動並執行 但是執行的效率還要進一步的修改了。

他就是 select * from 表a , 表u where a.xfuid=u.userid;
a 是個表 這個表不是資料庫現有的 而是通過某種條件查詢出的表。
  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.