Ordering numbers that are stored as strings in the database - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T18:08:31Zhttp://stackoverflow.com/feeds/question/210509http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/210509/ordering-numbers-that-are-stored-as-strings-in-the-database1Ordering numbers that are stored as strings in the databaseFarinha2008-10-16T22:23:00Z2008-10-17T07:29:02Z
<p>I have a bunch of records in several tables in a database that have a "process number" field, that's basically a number, but I have to store it as a string both because of some legacy data that has stuff like "89a" as a number and some numbering system that requires that process numbers be represented as number/year.</p>
<p>The problem arises when I try to order the processes by number. I get stuff like:</p>
<ul>
<li>1</li>
<li>10</li>
<li>11</li>
<li>12</li>
</ul>
<p>And the other problem is when I need to add a new process. The new process' number should be the biggest existing number incremented by one, and for that I would need a way to order the existing records by number.</p>
<p>Any suggestions?</p>
http://stackoverflow.com/questions/210509/ordering-numbers-that-are-stored-as-strings-in-the-database/210521#2105211Answer by Paolo Bergantino for Ordering numbers that are stored as strings in the databasePaolo Bergantino2008-10-16T22:29:05Z2008-10-16T22:29:05Z<p><a href="http://blog.feedmarker.com/2006/02/01/how-to-do-natural-alpha-numeric-sort-in-mysql/" rel="nofollow">Maybe this will help.</a></p>
<p>Essentially:</p>
<pre><code>SELECT process_order FROM your_table ORDER BY process_order + 0 ASC
</code></pre>
http://stackoverflow.com/questions/210509/ordering-numbers-that-are-stored-as-strings-in-the-database/210526#2105261Answer by Andrew for Ordering numbers that are stored as strings in the databaseAndrew2008-10-16T22:29:35Z2008-10-16T22:29:35Z<p>Can you store the numbers as zero padded values? That is, 01, 10, 11, 12?</p>
http://stackoverflow.com/questions/210509/ordering-numbers-that-are-stored-as-strings-in-the-database/210530#2105301Answer by Panos for Ordering numbers that are stored as strings in the databasePanos2008-10-16T22:31:06Z2008-10-16T22:31:06Z<p>I would suggest to create a new numeric field used only for ordering and update it from a trigger. </p>
http://stackoverflow.com/questions/210509/ordering-numbers-that-are-stored-as-strings-in-the-database/210546#2105460Answer by Remy Sharp for Ordering numbers that are stored as strings in the databaseRemy Sharp2008-10-16T22:39:07Z2008-10-16T22:39:07Z<p>You need to cast your field as you're selecting. I'm basing this syntax on MySQL - but the idea's the same:</p>
<pre><code>select * from table order by cast(field AS UNSIGNED);
</code></pre>
<p>Of course UNSIGNED could be SIGNED if required.</p>
http://stackoverflow.com/questions/210509/ordering-numbers-that-are-stored-as-strings-in-the-database/210551#2105511Answer by Stringent Software for Ordering numbers that are stored as strings in the databaseStringent Software2008-10-16T22:41:55Z2008-10-16T22:41:55Z<p>Can you split the data into two fields?</p>
<p>Store the 'process number' as an int and the 'process subtype' as a string.</p>
<p>That way:</p>
<ul>
<li>you can easily get the MAX processNumber - and increment it when you need to generate a
new number</li>
<li>you can ORDER BY processNumber ASC,
processSubtype ASC - to get the
correct order, even if multiple records have the same base number with different years/letters appended</li>
<li>when you need the 'full' number you
can just concatenate the two fields</li>
</ul>
<p>Would that do what you need?</p>
http://stackoverflow.com/questions/210509/ordering-numbers-that-are-stored-as-strings-in-the-database/210605#2106051Answer by tvanfosson for Ordering numbers that are stored as strings in the databasetvanfosson2008-10-16T23:16:09Z2008-10-16T23:16:09Z<p>Given that your process numbers don't seem to follow any fixed patterns (from your question and comments), can you construct/maintain a process number table that has two fields:</p>
<pre><code>create table process_ordering ( processNumber varchar(N), processOrder int )
</code></pre>
<p>Then select all the process numbers from your tables and insert into the process number table. Set the ordering however you want based on the (varying) process number formats. Join on this table, order by processOrder and select all fields from the other table. Index this table on processNumber to make the join fast.</p>
<pre><code>select my_processes.*
from my_processes
inner join process_ordering on my_process.processNumber = process_ordering.processNumber
order by process_ordering.processOrder
</code></pre>
http://stackoverflow.com/questions/210509/ordering-numbers-that-are-stored-as-strings-in-the-database/211127#2111271Answer by 6eorge Jetson for Ordering numbers that are stored as strings in the database6eorge Jetson2008-10-17T05:02:01Z2008-10-17T05:02:01Z<p>It seems to me that you have two tasks here.</p>
<blockquote>
• Convert the strings to numbers by legacy format/strip off the junk<br/>• Order the numbers
</blockquote>
<p>If you have a practical way of introducing string-parsing regular expressions into your process (and your issue has enough volume to be worth the effort), then I'd </p>
• Create a reference table such as
<pre><code>
CREATE TABLE tblLegacyFormatRegularExpressionMaster(
LegacyFormatId int,
LegacyFormatName varchar(50),
RegularExpression varchar(max)
)
</code></pre>
• Then, with a way of invoking the regular expressions, such as the CLR integration in SQL Server 2005 and above (the .NET Common Language Runtime integration to allow calls to compiled .NET methods <i>from within SQL Server as ordinary (Microsoft extended) T-SQL</i>, then you should be able to solve your problem.
<br/><br/> • See
<blockquote> http://www.codeproject.com/KB/string/SqlRegEx.aspx
</blockquote>
<p><br/>I apologize if this is way too much overhead for your problem at hand.</p>
http://stackoverflow.com/questions/210509/ordering-numbers-that-are-stored-as-strings-in-the-database/211312#2113121Answer by onedaywhen for Ordering numbers that are stored as strings in the databaseonedaywhen2008-10-17T07:29:02Z2008-10-17T07:29:02Z<p>Suggestion: </p>
<p>• Make your column a fixed width text (i.e. <code>CHAR</code> rather than <code>VARCHAR</code>).</p>
<p>• Pad the existing values with enough leading zeros to fill each column and a trailing space(s) where the values do not end in 'a' (or whatever).
• Add a <code>CHECK</code> constraint (or equivalent) to ensure new values conform to the pattern e.g. something like </p>
<pre><code>CHECK (process_number LIKE '[0-9][0-9][0-9][0-9][0-9][0-9][ab ]')
</code></pre>
<p>• In your insert/update stored procedures (or equivalent), pad any incoming values to fit the pattern.</p>
<p>• Remove the leading/trailing zeros/spaces as appropriate when displaying the values to humans.</p>
<p>Another advantage of this approach is that the incoming values '1', '01', '001', etc would all be considered to be the same value and could be covered by a simple unique constraint in the DBMS.</p>
<p>BTW I like the idea of splitting the trailing 'a' (or whatever) into a separate column, however I got the impression the data element in question is an identifier and therefore would not be appropriate to split it.</p>