SQL Union with order by

I want to combine three queries using union.

1.SELECT * from user_projects where status='O' order by id desc

It returns the following ids

115,112,111,106,5,4,3

Second query

2.select * from userprojects where status!='F' and status!='D' and status!='O' and newproject='yes' order by id desc

It returns the following ids

114,113,105,104,103,102,101,100,99

3.select * from userprojects where status!='F' and status!='D' and status!='O' and newproject='no'

It returns the following ids

110,109,108,107,98,97,96

But i am combine the three queries using union

(SELECT * from userprojects where status='O' order by id desc) union all (select * from userprojects where status!='F' and status!='D' and status!='O' and newproject='yes' order by id desc ) union all (select * from userprojects where status!='F' and status!='D' and status!='O' and new_project='no' order by id desc)

it return

3,4,5,106,111,112,115,99,100,......96,97...................

But i want

115,112,111,106,5,4,3,114,113,105,104,103,.........110,109,108........

Please any one help me

View Answers









Related Tutorials/Questions & Answers:
SQL Union with order by
SQL Union with order by  I want to combine three queries using union. 1.SELECT * from user_projects where status='O' order by id desc It returns...' and status!='O' and newproject='yes' order by id desc ) union all (select
SQL UNION Operator
SQL UNION Operator      ... The Tutorial helps you to understand SQL UNION Operator... SQL UNION Syntax The Syntax used for SQL UNION is used
Advertisements
What is the difference between UNION and UNION ALL in SQL?
What is the difference between UNION and UNION ALL in SQL?  What is the difference between UNION and UNION ALL in SQL?   Hi, UNION is an SQL keyword used to merge the results of two or more tables using a Select
SQL Union
SQL Union       SQL Union is used to combine the query of two or more Select Statement... an example from 'SQL Union'. To understand and grasp the example we create
merge tables in sql using union
merge tables in sql using union  How to create a new table in database by merging two tables using union function in SQL?   REATE TABLE new_table SELECT * FROM table1 UNION SELECT * FROM table2;   
SQL ORDER BY
SQL ORDER BY      ... an example from SQL ORDER BY. In this example, we create a table 'Stu_Table... 10 SQL ORDER BY Syntax The ORDER BY keyword sort the table
SQL UNION ALL Operator
SQL UNION ALL Operator       The SQL UNION ALL Operator is used to list all records from  two or more select statements. The SQL Union ALL  Operator
SQL UNION Operator
SQL UNION Operator      ... The Tutorial helps you to understand SQL UNION Operator... SQL UNION Syntax The Syntax used for SQL UNION is used
union
union  how to declare union function define in single line in java(eg:like c=a+b
SQL ORDER BY
SQL ORDER BY      ... an example from SQL ORDER BY. In this example, we create a table 'Stu_Table... 10 SQL ORDER BY Syntax The ORDER BY keyword sort the table result
PHP SQL ORDER BY
PHP SQL ORDER BY       This example illustrates how to execute query with ORDER BY clause in the php application. ORDER BY clause is used to sort the result data either
Php Sql ORDER BY
Php Sql ORDER BY  This example illustrates how to execute query with ORDER BY clause in the php application. In this example we create a php page.... SQL allows for sorting of retrieved data with the ORDER BY clause
order
order   write a java code to enter order of number of chocolates(bar,powder,giftbox) in arraylist. Also consider exceptional cases like entering integer in name use try,catch ,throw to deal with exception
ModuleNotFoundError: No module named 'union'
ModuleNotFoundError: No module named 'union'  Hi, My Python program is throwing following error: ModuleNotFoundError: No module named 'union' How to remove the ModuleNotFoundError: No module named 'union'
ModuleNotFoundError: No module named 'jd-union'
ModuleNotFoundError: No module named 'jd-union'  Hi, My Python...-union' How to remove the ModuleNotFoundError: No module named 'jd-union... to install padas library. You can install jd-union python with following
ModuleNotFoundError: No module named 'marshmallow-union'
ModuleNotFoundError: No module named 'marshmallow-union'  Hi, My... named 'marshmallow-union' How to remove the ModuleNotFoundError: No module named 'marshmallow-union' error? Thanks   Hi, In your
ModuleNotFoundError: No module named 'tagged-union'
ModuleNotFoundError: No module named 'tagged-union'  Hi, My Python... 'tagged-union' How to remove the ModuleNotFoundError: No module named 'tagged-union' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'UNION-project'
ModuleNotFoundError: No module named 'UNION-project'  Hi, My... 'UNION-project' How to remove the ModuleNotFoundError: No module named 'UNION-project' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'tagged-union'
ModuleNotFoundError: No module named 'tagged-union'  Hi, My Python... 'tagged-union' How to remove the ModuleNotFoundError: No module named 'tagged-union' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'union-find'
ModuleNotFoundError: No module named 'union-find'  Hi, My Python... 'union-find' How to remove the ModuleNotFoundError: No module named 'union-find' error? Thanks   Hi, In your python environment you
sql - SQL
order by SQL Query  What is order by in SQL and when this query is used in SQL?Thanks!  Hi,In case of mysql you can user following query.Select salary from salary_table order by salary desc limit 3,1Thanks
SQL statement - SQL
SELECT SUM(od_vat) FROM tbl_order WHERE od_id = $orderId UNION...SQL statement  Hi, i have an sql statement that needs to add... be charged 10. otherwise nothing. Heres the code: $orderAmount = 0; $sql
ModuleNotFoundError: No module named 'django-delayed-union'
ModuleNotFoundError: No module named 'django-delayed-union'  Hi...: No module named 'django-delayed-union' How to remove the ModuleNotFoundError: No module named 'django-delayed-union' error? Thanks   Hi
ModuleNotFoundError: No module named 'tagged-union-carotti'
ModuleNotFoundError: No module named 'tagged-union-carotti'  Hi...: No module named 'tagged-union-carotti' How to remove the ModuleNotFoundError: No module named 'tagged-union-carotti' error? Thanks   Hi
sql
difference between sql and oracle  what is the difference between sql and oracle
sql
sql  how to get first row in sql with using where condition in sql? how to get last row in sql with using where condition in sql
Composable Pointcut - Union
ComposablePointcut- Union Operation A composable pointcuts can be composed using the static methods in the org.springframework.aop.support.Pointcuts class or using composable pointcut class in the same package. MainClaz.java
MySQL Order By
By in a sql query: (Ascending Order)ADS_TO_REPLACE_3 SELECT..._salary) asc; Output: ADS_TO_REPLACE_5 Use Order By in a sql query... MySQL Order By      
HQL order by.
HQL order by.  HQL Order by query giving problem.   Order... mention, order by automatically sorted the list in ascending order. Here is an example of order by clause. Since we didn?t mention ?asce? or ?desc? it will return
sql
sql  I want interview sql questions   Please visit the following link: SQL Tutorials
SQL
tables EMP, and DEPT, the structure for which are given above. Write SQL queries...??. Display all employee names and employee numbers in the alphabetical order
Sql
Sql  how to find maximum of a101,a102,a103 from a table in sql
sql
sql  how to display the values in the same order as i entered from a certain table
JavaScript array union
JavaScript array union   ... union in Java Script. The code contain a script that include a variable arr1... elements. The document. write print the list of array union element
SQL
SQL  hii What is sql?   hello,ADS_TO_REPLACE_1 SQL, which stands for Structured Query Language, is a special-purpose language used to define, access, and manipulate data. SQL is non procedural, meaning
sql
sql  returning value from a store procedure in sql with example   Please visit the following links: http://www.roseindia.net/mysql/mysql5/stored-procedures-and-functions.shtml http://www.roseindia.net/sql/create
Ascending order
of them equal to each other, in any order, (for example, 23, 7, 156; but not 23, 7, 23), and then it should print out the three integers in ascending order, saying
SQL
SQL  In my computer i have microsoft sql 2008.how can i set that in the cmd.i want to use that in cmd.what is the default username and password
SQl
SQl  . Given two tables: table1(player, groundname, numcenturies); table2(ground_name, country); Write and SQL query for the following: " Select all the players from table1 who has
SQL
SQL   1)How to Store 1000 records in Oracle object. 2)Write a query for calculate highest, 3rd Highest & 10th highest salary from emp teble. 3)What is Sequence. 4)How to use rowid in Sql. 5)What is Views. 6)How
SQL
format of an OS label. Used primarily with Trusted Oracle. Order of SQL statement... SQL       SQL SQL is an English like language consisting of commands to store, retrieve
SQL
SQL  how to get ( 15 march 2011) and (15/03/2011) output using SQL   Use the following queries to get the data from database in the given format. For (15 march 2011) format: SELECT DATE_FORMAT(dob, '%d %M %Y') FROM
SQL
SQL  how to get ( 15 march 2011) and (15/03/2011) output using SQL   Use the following queries to get the data from database in the given format. For (15 march 2011) format: SELECT DATE_FORMAT(dob, '%d %M %Y') FROM
SQL
SQL Trigger query  Why we use the Trigger and what it's uses?   A database trigger is procedural code that is automatically executed..., user events, and SQL statements to subscribing applications 10)Restrict DML
SQL
events, user events, and SQL statements to subscribing applications 10)Restrict DML
SQL
events, and SQL statements to subscribing applications 10)Restrict DML
SQL
, user events, and SQL statements to subscribing applications 10)Restrict DML
sql - SQL
in ascending order 1 to 90 as per col qno ? what could i do ?   Hi friend, For ascending order the record in the table order by Col qno Using the Query : "select * from question order by qno Asc" For more information
sql - SQL
want query? 4.what is the diffrence between sql and plsql?  Hi Friend... HAVING n>1; Difference between SQL and PL/SQL: SQL is a structured query...(select,insert,update etc.), manipulate objects(DDL) and data(DML). PL/SQL
Order Entry System
Order Entry System  Create a new order entry system using netbeans and microsoft access.can anyone help me