vote up 0 vote down star

I need to format data in a sql column that is currently entered like this:

Z04000002003.7

The desired output of this would be:

Z04/000/002/003.7

Every time a user enters data like this Z04000002003.7. The next time the user opens the record it would have automatically formatted it to display Z04/000/002/003.7.

flag
What needs to be stored - the slashes or not the slashes? – Jonathan Leffler Jul 24 at 19:34

3 Answers

vote up 0 vote down

If you want to insert the slashes on INSERT or UPDATE (when the string gets into the database) or SELECT, you can do that in TSQL with a somewhat clumsy string expression:

SUBSTRING(thestring, 1, 3) + '/' + SUBSTRING(thestring, 4, 6) + '/' + ...

and so on, but I agree with other respondents that it may be a better architecture to perform such transformations "closer to the user" (in the UI, or perhaps in a business logic layer if those slashes are in fact part of the business logic, but UI looks likelier).

link|flag
The problem being that if the update sends through an already-formatted version of the data, then you've put extra slashes into it, and therefore in the wrong place, too. If you've pre-tested to ensure the slashes are absent, your expression is good. There's also the issue of what happens if the user types "Z0/40/00/00/20/03.7" - that stuff should, presumably, be handled by the UI. – Jonathan Leffler Jul 24 at 19:44
@Jonathan, agreed, as I mentioned -- UI (maybe, but unlikely, business logic) may be the best place to standardize this string. And I did say that this clumsy expression helps IF you want to insert slashes -- if you don't, then clearly it doesn't!-) – Alex Martelli Jul 24 at 20:05
The user won't be adding slashes. The slashes are for pure retrieval purposes. – Rivageek Jul 24 at 20:30
vote up 0 vote down

A couple of options:
1. Script update all the rows format from old to new standard
2. Like n8wrl said format on insert
3. Format on data return.

link|flag
vote up 2 vote down

When you say 'open the record' where exactly is that happening? A web page?

Do the formatting as close to the user as you can - UI layer. I don't think this is a SQL problem.

link|flag
Yes. This belongs to UI. – shahkalpesh Jul 24 at 19:21
Do it when displaying the actual value. +1. – Will Jul 24 at 20:00
The record is a value that a user adds through an application. – Rivageek Jul 24 at 20:29
Yes but you format it in the UI – n8wrl Jul 27 at 13:47

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.