Click here to Skip to main content
Click here to Skip to main content

Sort a column inside an already created table

By , 7 Sep 2012
 

Introduction

This tip will explain how to sort a column inside a table.

In order to move the column you will have to re-declare it (name and field type) and then specify the right position on the table.

Keep in mind that it is a bad practice to depend on the position columns are in a database.

This tip is here for two reasons:

  1. To help other users do this if they need it.
  2. To help me find this information again.

Using the code

In order to make use of the code you will have to use the SQL editing / execution environment of your database.

Let's imagine you have a table named "contents". Let's say that inside that table you have some columns named "Spanish", "English", "German", and you would like to get them sorted alphabetically.

From:

CONTENTS
Spanish (text)
English (text)
German (text)

To:

CONTENTS
English (text)
German (text)

Spanish (text)

The SQL query you should execute to get the result shown in the previous sample is the following one:

 alter table CONTENTS change Spanish Spanish text after German

You can see in the SQL query that what you are really making is altering the table by redefining the "Spanish" column with the same name (Spanish), and type (text), placing the new "Spanish" column just after the "German" column.

This will make it...

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Joan Murt
Chief Technology Officer
Spain Spain
Member
I'm from Catalonia (in Spain) and a specialist in CNC, PLC, robotics and automation in general.
 
From 1998 I've been developing software applications for special machines we make.
 
I'm using different technologies in each case to get the proper result, fieldbus communications, special electronics, special laser sensors, artificial vision, robot arms, CNC applications, PLC's...

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralUnclearmemberPIEBALDconsult7 Sep '12 - 4:32 
QuestionRe: UnclearmemberJoan Murt7 Sep '12 - 6:47 
AnswerRe: UnclearmemberJohn Brett9 Sep '12 - 21:02 
GeneralRe: UnclearmemberJoan Murt9 Sep '12 - 21:16 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130516.1 | Last Updated 7 Sep 2012
Article Copyright 2012 by Joan Murt
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid