devxlogo

Create a Sortable Column Dynamically

Create a Sortable Column Dynamically

There are times when sorting your resultset by the primary key doesn’t accomplish what you need. One way to get around this is to create a sortable column dynamically in your query using the CASE function.

SELECT name, title, priority =	(CASE title	when 'President' then 1				when 'Vice President' then 2			when'Secretary' then 3	when 'Treasurer' then 4	end)FROM executiveORDER BY priority

This example gives each title a priority and sorts by it. This could have been accomplished using a second table and joining to it?but why do that if you don’t need to?

See also  Professionalism Starts in Your Inbox: Keys to Presenting Your Best Self in Email
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist