Hello, 2008R2
I hope this make since, say I have a column containing
ClientA
ClientB
ClientC
ClientD
ClientE
...
If I
it will order as expected. Now say I want
ClientD
ClientB
ClientA
Others in their order, (ClientC,ClientE,ClientF,ClientG...).
Thus have a given order for three clients and not worry about the rest.
Is the best way to do this is use a "lookup" table where there is a column for controlling the ORDER BY?
Thank you,
djj
The Lord is my shepherd (Psalm 23) - I need someone to lead me!
I hope this make since, say I have a column containing
ClientA
ClientB
ClientC
ClientD
ClientE
...
If I
Code:
SELECT myColumn FROM myTable ORDER BY myColumn
ClientD
ClientB
ClientA
Others in their order, (ClientC,ClientE,ClientF,ClientG...).
Thus have a given order for three clients and not worry about the rest.
Is the best way to do this is use a "lookup" table where there is a column for controlling the ORDER BY?
Thank you,
djj
The Lord is my shepherd (Psalm 23) - I need someone to lead me!