vote up 0 vote down star

hi

i have a field in sql named as address which is of 80 char. i want to put this field into 2 fields addr1 and addr2 of 40 char each. how do i do it.

flag

5 Answers

vote up 3 vote down

this is for T-SQL, but it can't be much different for PL/SQL

declare @yourVar varchar(80)
select substring(@yourVar, 1, 40), substring(@yourVar, 40, 40)
link|flag
+1 (In oracle the function is SUBSTR) download.oracle.com/docs/cd/… – hamishmcn Dec 23 '08 at 12:46
vote up 2 vote down

for plsql, it's substr(), so select substr(addr, 1, 40) as addr1, substr(addr, 40) as addr2 from ...

link|flag
hi we hav to select from wat. i have already selected the addr variable from 1 cursor and need to divide that – saurabh Dec 23 '08 at 13:00
so if you have a variable addr I assume that you are writting a stored proc, so declare two variables addr1 and addr2 and use addr1 := substr(addr, 1, 40); addr2 := substr(addr, 40); – PW Dec 23 '08 at 13:12
vote up 0 vote down

I think your schema would be better off if you altered that table to have two columns instead of one. I'd prefer that solution to parsing the current value.

link|flag
vote up 0 vote down

hi we hav to select from wat. i have already selected the addr variable from 1 cursor and need to divide that

link|flag
vote up 0 vote down

Brute-force chopping the 80-character value at position 40 runs the risk of breaking in the middle of a word. You might want to do the following instead:

  1. Replace all runs of whitespace with a single blank.
  2. Find the last blank at or before position 40.
  3. Place everything before that blank in the first result field.
  4. Place everything after that blank in the second result field.

The exact details of the operations above will depend on what tools are available to you (e.g. SQL only, or reading from one DB and writing to another using a separate program, etc.)

There is the possibility that the 80-character value may be filled in such a way that breaking between "words" will require one of the result values to be more than 40 characters long to avoid truncation.

link|flag

Your Answer

Get an OpenID
or

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