Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7505633
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T21:58:48+00:00 2026-05-29T21:58:48+00:00

I have a nested SQL query : SELECT * FROM ( SELECT * FROM

  • 0

I have a nested SQL query :

SELECT * 
FROM
(
    SELECT *
    FROM asset_status
    ORDER BY session_id DESC
) tmp
GROUP BY asset_id, workflow_element_id

I would like to create a view from this query but MySQL doesn’t seem to allow subqueries in views. How can convert this to a join?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T21:58:48+00:00Added an answer on May 29, 2026 at 9:58 pm

    SQL Server does allow sub-queries in views. What you can’t do, is SELECT * and GROUP BY a, b

    Have you tried… (I’ll assume this isn’t your whole query so I’ll make the minimum possible changes)

    SELECT asset_id, workflow_element_id
    FROM
    (
        SELECT *
        FROM asset_status
        -- ORDER BY session_id DESC   (Removed as innefective in a view)
    ) tmp
    GROUP BY asset_id, workflow_element_id
    

    Also, note that the ORDER BY in the inner query is innefective (and possibly even dis-allowed), as the outer query is then allowed to re-order it (it won’t always come back in a different order, but this layout doesn’t guarnatee the order you seem to want). Even in the outer query, it may cause your results to be order when using the view, but again the optimiser is allowed to re-order the results. Unless the ORDER BY is in the query using the view, the order is never absolutely guaranteed…

    SELECT * FROM view ORDER BY x
    

    Finally, you tagged this as a LEFT JOIN question. If you have a more complete example of the code, I’m sure someone will suggest an alternative layout. But I’m off out for a few days now. Good luck! 🙂

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a nested SQL query : SELECT DISTINCT(topic_id) FROM bb_posts WHERE topic_id NOT
We have a sql query as follows select * from Table where date <
I have the following query in sql: SELECT a1 FROM dbo.myProductNames WHERE keycode =
I have a SQL query of the form SELECT ... FROM A@DB1 a, B@DB1
I have sql such as: select c.customerID, sum(o.orderCost) from customer c, order o where
I have an sql query pulling a few results from different tables, one of
Is it possible to have a single sql query return a nested structure rather
I have some sophisticated query (just select with many nested joins and subqueries). I've
I have 2 tables, using an inner join to query them. SELECT COUNT(table2.id) FROM
How do you convert a SQL query with nested SELECT statements to a LINQ

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.