Unexpected Result SQL ORDER BY The Next CEO of Stack OverflowHow can I prevent SQL injection in PHP?Add a column with a default value to an existing table in SQL ServerInserting multiple rows in a single SQL query?Insert results of a stored procedure into a temporary tableHow do I UPDATE from a SELECT in SQL Server?Finding duplicate values in a SQL tableWhat are the options for storing hierarchical data in a relational database?How to order by with unionHow to import an SQL file using the command line in MySQL?Convert INT to VARCHAR SQL

Audio Conversion With ADS1243

What difference does it make using sed with/without whitespaces?

Does the Idaho Potato Commission associate potato skins with healthy eating?

Towers in the ocean; How deep can they be built?

Physiological effects of huge anime eyes

Small nick on power cord from an electric alarm clock, and copper wiring exposed but intact

Why did early computer designers eschew integers?

TikZ: How to fill area with a special pattern?

Purpose of level-shifter with same in and out voltages

Scary film where a woman has vaginal teeth

free fall ellipse or parabola?

How to get the last not-null value in an ordered column of a huge table?

Which one is the true statement?

Traveling with my 5 year old daughter (as the father) without the mother from Germany to Mexico

Is dried pee considered dirt?

Airplane gently rocking its wings during whole flight

Is there an equivalent of cd - for cp or mv

Is a distribution that is normal, but highly skewed, considered Gaussian?

Could a dragon use its wings to swim?

Can Sneak Attack be used when hitting with an improvised weapon?

Can I board the first leg of the flight without having final country's visa?

Are the names of these months realistic?

Decide between Polyglossia and Babel for LuaLaTeX in 2019

Is it professional to write unrelated content in an almost-empty email?



Unexpected Result SQL ORDER BY



The Next CEO of Stack OverflowHow can I prevent SQL injection in PHP?Add a column with a default value to an existing table in SQL ServerInserting multiple rows in a single SQL query?Insert results of a stored procedure into a temporary tableHow do I UPDATE from a SELECT in SQL Server?Finding duplicate values in a SQL tableWhat are the options for storing hierarchical data in a relational database?How to order by with unionHow to import an SQL file using the command line in MySQL?Convert INT to VARCHAR SQL










0















I have a scenario that I dont know how to get the correct results due to my lack of knowledge with SQL and need assistance.



I understand what the ORDER BY command does; I just dont know how to manipulate the data returned from the query to keep the data in the order I need it to be in.



Below is the SQL String:



SELECT cfcif# AS "CIF Number",cfna1 AS "Customer Name" FROM cncttp08.jhadat842.cfmast cfmast WHERE cfcif#='T000714'
UNION
SELECT cfcif# AS "CIF Number",cfna1 AS "Customer Name" FROM cncttp08.jhadat842.cfmast cfmast WHERE cfcif#='T000713'
UNION
SELECT cfcif# AS "CIF Number",cfna1 AS "Customer Name" FROM cncttp08.jhadat842.cfmast cfmast WHERE cfcif#='T000715'
ORDER BY "CIF Number"


As you can see The "CIF Numbers" are out of order, which is the way they need to be and with the ORDER BY the data is ordered by the CIF#, but I need the data to actually be out of order.



Below is how the current string returns the data:



T000713 | ROGER RABBITT 
T000714 | JESSICA RABBIT
T000715 | JAMES KIRK


Below is how I need the data returned:



T000714 | JESSICA RABBITT
T000713 | ROGER RABBITT
T000715 | JAMES KIRK


When I remove the ORDER BY the result returned is this:



T000714 | JAMES KIRK
T000713 | JESSICA RABBITT
T000715 | ROGER RABBITT









share|improve this question

















  • 1





    The name/number combinations change without the ORDER BY? That seems unlikely.

    – Eric Brandt
    Mar 8 at 17:34















0















I have a scenario that I dont know how to get the correct results due to my lack of knowledge with SQL and need assistance.



I understand what the ORDER BY command does; I just dont know how to manipulate the data returned from the query to keep the data in the order I need it to be in.



Below is the SQL String:



SELECT cfcif# AS "CIF Number",cfna1 AS "Customer Name" FROM cncttp08.jhadat842.cfmast cfmast WHERE cfcif#='T000714'
UNION
SELECT cfcif# AS "CIF Number",cfna1 AS "Customer Name" FROM cncttp08.jhadat842.cfmast cfmast WHERE cfcif#='T000713'
UNION
SELECT cfcif# AS "CIF Number",cfna1 AS "Customer Name" FROM cncttp08.jhadat842.cfmast cfmast WHERE cfcif#='T000715'
ORDER BY "CIF Number"


As you can see The "CIF Numbers" are out of order, which is the way they need to be and with the ORDER BY the data is ordered by the CIF#, but I need the data to actually be out of order.



Below is how the current string returns the data:



T000713 | ROGER RABBITT 
T000714 | JESSICA RABBIT
T000715 | JAMES KIRK


Below is how I need the data returned:



T000714 | JESSICA RABBITT
T000713 | ROGER RABBITT
T000715 | JAMES KIRK


When I remove the ORDER BY the result returned is this:



T000714 | JAMES KIRK
T000713 | JESSICA RABBITT
T000715 | ROGER RABBITT









share|improve this question

















  • 1





    The name/number combinations change without the ORDER BY? That seems unlikely.

    – Eric Brandt
    Mar 8 at 17:34













0












0








0








I have a scenario that I dont know how to get the correct results due to my lack of knowledge with SQL and need assistance.



I understand what the ORDER BY command does; I just dont know how to manipulate the data returned from the query to keep the data in the order I need it to be in.



Below is the SQL String:



SELECT cfcif# AS "CIF Number",cfna1 AS "Customer Name" FROM cncttp08.jhadat842.cfmast cfmast WHERE cfcif#='T000714'
UNION
SELECT cfcif# AS "CIF Number",cfna1 AS "Customer Name" FROM cncttp08.jhadat842.cfmast cfmast WHERE cfcif#='T000713'
UNION
SELECT cfcif# AS "CIF Number",cfna1 AS "Customer Name" FROM cncttp08.jhadat842.cfmast cfmast WHERE cfcif#='T000715'
ORDER BY "CIF Number"


As you can see The "CIF Numbers" are out of order, which is the way they need to be and with the ORDER BY the data is ordered by the CIF#, but I need the data to actually be out of order.



Below is how the current string returns the data:



T000713 | ROGER RABBITT 
T000714 | JESSICA RABBIT
T000715 | JAMES KIRK


Below is how I need the data returned:



T000714 | JESSICA RABBITT
T000713 | ROGER RABBITT
T000715 | JAMES KIRK


When I remove the ORDER BY the result returned is this:



T000714 | JAMES KIRK
T000713 | JESSICA RABBITT
T000715 | ROGER RABBITT









share|improve this question














I have a scenario that I dont know how to get the correct results due to my lack of knowledge with SQL and need assistance.



I understand what the ORDER BY command does; I just dont know how to manipulate the data returned from the query to keep the data in the order I need it to be in.



Below is the SQL String:



SELECT cfcif# AS "CIF Number",cfna1 AS "Customer Name" FROM cncttp08.jhadat842.cfmast cfmast WHERE cfcif#='T000714'
UNION
SELECT cfcif# AS "CIF Number",cfna1 AS "Customer Name" FROM cncttp08.jhadat842.cfmast cfmast WHERE cfcif#='T000713'
UNION
SELECT cfcif# AS "CIF Number",cfna1 AS "Customer Name" FROM cncttp08.jhadat842.cfmast cfmast WHERE cfcif#='T000715'
ORDER BY "CIF Number"


As you can see The "CIF Numbers" are out of order, which is the way they need to be and with the ORDER BY the data is ordered by the CIF#, but I need the data to actually be out of order.



Below is how the current string returns the data:



T000713 | ROGER RABBITT 
T000714 | JESSICA RABBIT
T000715 | JAMES KIRK


Below is how I need the data returned:



T000714 | JESSICA RABBITT
T000713 | ROGER RABBITT
T000715 | JAMES KIRK


When I remove the ORDER BY the result returned is this:



T000714 | JAMES KIRK
T000713 | JESSICA RABBITT
T000715 | ROGER RABBITT






sql db2






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 8 at 17:28









Zack EZack E

394115




394115







  • 1





    The name/number combinations change without the ORDER BY? That seems unlikely.

    – Eric Brandt
    Mar 8 at 17:34












  • 1





    The name/number combinations change without the ORDER BY? That seems unlikely.

    – Eric Brandt
    Mar 8 at 17:34







1




1





The name/number combinations change without the ORDER BY? That seems unlikely.

– Eric Brandt
Mar 8 at 17:34





The name/number combinations change without the ORDER BY? That seems unlikely.

– Eric Brandt
Mar 8 at 17:34












2 Answers
2






active

oldest

votes


















3














I don't understand why you use UNION. You can do it like this:



SELECT 
cfcif# AS "CIF Number",
cfna1 AS "Customer Name"
FROM cncttp08.jhadat842.cfmast cfmast
WHERE cfcif# IN ('T000714', 'T000713', 'T000715')
ORDER BY
CASE cfcif#
WHEN 'T000714' THEN 1
WHEN 'T000713' THEN 2
WHEN 'T000715' THEN 3
END





share|improve this answer























  • Thank you. This is exactly what i was needing and a great learning tool for me to use as I am still really new to SQL and its functionality. Much appreciated!.

    – Zack E
    Mar 8 at 17:54


















0














Simple!



Remove quotes from the order by clause. It should work. Your code should be like below.



`SELECT cfcif# AS "CIF Number",cfna1 AS "Customer Name" FROM 
cncttp08.jhadat842.cfmast cfmast WHERE cfcif#='T000714'
UNION
SELECT cfcif# AS "CIF Number",cfna1 AS "Customer Name" FROM
cncttp08.jhadat842.cfmast cfmast WHERE cfcif#='T000713'
UNION
SELECT cfcif# AS "CIF Number",cfna1 AS "Customer Name" FROM
cncttp08.jhadat842.cfmast cfmast WHERE cfcif#='T000715'
ORDER BY CIF Number`





share|improve this answer


















  • 2





    That won't work. If a column name is mixed case, or has a space in it, you will need to put it in double quotes

    – Paul Vernon
    Mar 8 at 18:47











  • agreed with your comment.

    – Sathvik Reddy
    Mar 8 at 22:07











Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55068172%2funexpected-result-sql-order-by%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























2 Answers
2






active

oldest

votes








2 Answers
2






active

oldest

votes









active

oldest

votes






active

oldest

votes









3














I don't understand why you use UNION. You can do it like this:



SELECT 
cfcif# AS "CIF Number",
cfna1 AS "Customer Name"
FROM cncttp08.jhadat842.cfmast cfmast
WHERE cfcif# IN ('T000714', 'T000713', 'T000715')
ORDER BY
CASE cfcif#
WHEN 'T000714' THEN 1
WHEN 'T000713' THEN 2
WHEN 'T000715' THEN 3
END





share|improve this answer























  • Thank you. This is exactly what i was needing and a great learning tool for me to use as I am still really new to SQL and its functionality. Much appreciated!.

    – Zack E
    Mar 8 at 17:54















3














I don't understand why you use UNION. You can do it like this:



SELECT 
cfcif# AS "CIF Number",
cfna1 AS "Customer Name"
FROM cncttp08.jhadat842.cfmast cfmast
WHERE cfcif# IN ('T000714', 'T000713', 'T000715')
ORDER BY
CASE cfcif#
WHEN 'T000714' THEN 1
WHEN 'T000713' THEN 2
WHEN 'T000715' THEN 3
END





share|improve this answer























  • Thank you. This is exactly what i was needing and a great learning tool for me to use as I am still really new to SQL and its functionality. Much appreciated!.

    – Zack E
    Mar 8 at 17:54













3












3








3







I don't understand why you use UNION. You can do it like this:



SELECT 
cfcif# AS "CIF Number",
cfna1 AS "Customer Name"
FROM cncttp08.jhadat842.cfmast cfmast
WHERE cfcif# IN ('T000714', 'T000713', 'T000715')
ORDER BY
CASE cfcif#
WHEN 'T000714' THEN 1
WHEN 'T000713' THEN 2
WHEN 'T000715' THEN 3
END





share|improve this answer













I don't understand why you use UNION. You can do it like this:



SELECT 
cfcif# AS "CIF Number",
cfna1 AS "Customer Name"
FROM cncttp08.jhadat842.cfmast cfmast
WHERE cfcif# IN ('T000714', 'T000713', 'T000715')
ORDER BY
CASE cfcif#
WHEN 'T000714' THEN 1
WHEN 'T000713' THEN 2
WHEN 'T000715' THEN 3
END






share|improve this answer












share|improve this answer



share|improve this answer










answered Mar 8 at 17:36









forpasforpas

19.1k3828




19.1k3828












  • Thank you. This is exactly what i was needing and a great learning tool for me to use as I am still really new to SQL and its functionality. Much appreciated!.

    – Zack E
    Mar 8 at 17:54

















  • Thank you. This is exactly what i was needing and a great learning tool for me to use as I am still really new to SQL and its functionality. Much appreciated!.

    – Zack E
    Mar 8 at 17:54
















Thank you. This is exactly what i was needing and a great learning tool for me to use as I am still really new to SQL and its functionality. Much appreciated!.

– Zack E
Mar 8 at 17:54





Thank you. This is exactly what i was needing and a great learning tool for me to use as I am still really new to SQL and its functionality. Much appreciated!.

– Zack E
Mar 8 at 17:54













0














Simple!



Remove quotes from the order by clause. It should work. Your code should be like below.



`SELECT cfcif# AS "CIF Number",cfna1 AS "Customer Name" FROM 
cncttp08.jhadat842.cfmast cfmast WHERE cfcif#='T000714'
UNION
SELECT cfcif# AS "CIF Number",cfna1 AS "Customer Name" FROM
cncttp08.jhadat842.cfmast cfmast WHERE cfcif#='T000713'
UNION
SELECT cfcif# AS "CIF Number",cfna1 AS "Customer Name" FROM
cncttp08.jhadat842.cfmast cfmast WHERE cfcif#='T000715'
ORDER BY CIF Number`





share|improve this answer


















  • 2





    That won't work. If a column name is mixed case, or has a space in it, you will need to put it in double quotes

    – Paul Vernon
    Mar 8 at 18:47











  • agreed with your comment.

    – Sathvik Reddy
    Mar 8 at 22:07















0














Simple!



Remove quotes from the order by clause. It should work. Your code should be like below.



`SELECT cfcif# AS "CIF Number",cfna1 AS "Customer Name" FROM 
cncttp08.jhadat842.cfmast cfmast WHERE cfcif#='T000714'
UNION
SELECT cfcif# AS "CIF Number",cfna1 AS "Customer Name" FROM
cncttp08.jhadat842.cfmast cfmast WHERE cfcif#='T000713'
UNION
SELECT cfcif# AS "CIF Number",cfna1 AS "Customer Name" FROM
cncttp08.jhadat842.cfmast cfmast WHERE cfcif#='T000715'
ORDER BY CIF Number`





share|improve this answer


















  • 2





    That won't work. If a column name is mixed case, or has a space in it, you will need to put it in double quotes

    – Paul Vernon
    Mar 8 at 18:47











  • agreed with your comment.

    – Sathvik Reddy
    Mar 8 at 22:07













0












0








0







Simple!



Remove quotes from the order by clause. It should work. Your code should be like below.



`SELECT cfcif# AS "CIF Number",cfna1 AS "Customer Name" FROM 
cncttp08.jhadat842.cfmast cfmast WHERE cfcif#='T000714'
UNION
SELECT cfcif# AS "CIF Number",cfna1 AS "Customer Name" FROM
cncttp08.jhadat842.cfmast cfmast WHERE cfcif#='T000713'
UNION
SELECT cfcif# AS "CIF Number",cfna1 AS "Customer Name" FROM
cncttp08.jhadat842.cfmast cfmast WHERE cfcif#='T000715'
ORDER BY CIF Number`





share|improve this answer













Simple!



Remove quotes from the order by clause. It should work. Your code should be like below.



`SELECT cfcif# AS "CIF Number",cfna1 AS "Customer Name" FROM 
cncttp08.jhadat842.cfmast cfmast WHERE cfcif#='T000714'
UNION
SELECT cfcif# AS "CIF Number",cfna1 AS "Customer Name" FROM
cncttp08.jhadat842.cfmast cfmast WHERE cfcif#='T000713'
UNION
SELECT cfcif# AS "CIF Number",cfna1 AS "Customer Name" FROM
cncttp08.jhadat842.cfmast cfmast WHERE cfcif#='T000715'
ORDER BY CIF Number`






share|improve this answer












share|improve this answer



share|improve this answer










answered Mar 8 at 18:02









Sathvik ReddySathvik Reddy

265




265







  • 2





    That won't work. If a column name is mixed case, or has a space in it, you will need to put it in double quotes

    – Paul Vernon
    Mar 8 at 18:47











  • agreed with your comment.

    – Sathvik Reddy
    Mar 8 at 22:07












  • 2





    That won't work. If a column name is mixed case, or has a space in it, you will need to put it in double quotes

    – Paul Vernon
    Mar 8 at 18:47











  • agreed with your comment.

    – Sathvik Reddy
    Mar 8 at 22:07







2




2





That won't work. If a column name is mixed case, or has a space in it, you will need to put it in double quotes

– Paul Vernon
Mar 8 at 18:47





That won't work. If a column name is mixed case, or has a space in it, you will need to put it in double quotes

– Paul Vernon
Mar 8 at 18:47













agreed with your comment.

– Sathvik Reddy
Mar 8 at 22:07





agreed with your comment.

– Sathvik Reddy
Mar 8 at 22:07

















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55068172%2funexpected-result-sql-order-by%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Can't initialize raids on a new ASUS Prime B360M-A motherboard2019 Community Moderator ElectionSimilar to RAID config yet more like mirroring solution?Can't get motherboard serial numberWhy does the BIOS entry point start with a WBINVD instruction?UEFI performance Asus Maximus V Extreme

Identity Server 4 is not redirecting to Angular app after login2019 Community Moderator ElectionIdentity Server 4 and dockerIdentityserver implicit flow unauthorized_clientIdentityServer Hybrid Flow - Access Token is null after user successful loginIdentity Server to MVC client : Page Redirect After loginLogin with Steam OpenId(oidc-client-js)Identity Server 4+.NET Core 2.0 + IdentityIdentityServer4 post-login redirect not working in Edge browserCall to IdentityServer4 generates System.NullReferenceException: Object reference not set to an instance of an objectIdentityServer4 without HTTPS not workingHow to get Authorization code from identity server without login form

2005 Ahvaz unrest Contents Background Causes Casualties Aftermath See also References Navigation menue"At Least 10 Are Killed by Bombs in Iran""Iran"Archived"Arab-Iranians in Iran to make April 15 'Day of Fury'"State of Mind, State of Order: Reactions to Ethnic Unrest in the Islamic Republic of Iran.10.1111/j.1754-9469.2008.00028.x"Iran hangs Arab separatists"Iran Overview from ArchivedConstitution of the Islamic Republic of Iran"Tehran puzzled by forged 'riots' letter""Iran and its minorities: Down in the second class""Iran: Handling Of Ahvaz Unrest Could End With Televised Confessions""Bombings Rock Iran Ahead of Election""Five die in Iran ethnic clashes""Iran: Need for restraint as anniversary of unrest in Khuzestan approaches"Archived"Iranian Sunni protesters killed in clashes with security forces"Archived