up vote 2 down vote favorite
1
share [g+] share [fb]

I have a database table containing fields RACE, ETHNICITY and ETH. I need to evaluate RACE and ETHNICITY fields and populate ETH using a series of cases: if Race = W and Ethncity = 1 then ETH = Caucasian etc.

Can someone advise me on the best way to structure a stored procedure to accomplish this?

link|improve this question

feedback

2 Answers

up vote 9 down vote accepted

I'd do a CASE statement in your update:

UPDATE yourtable
   SET Eth = CASE
               WHEN Race = 'W' AND Ethnicity = 1 THEN 'Caucasian'
               WHEN Race = 'B' AND Ethnicity = 2 THEN 'African-American'
               WHEN Race = 'H' THEN 'Hispanic' --Ethnicity is irrelevant
               ...whatever other pairs of conditions you want...
             END
 FROM yourtable

In this case, you can have whatever conditions you want on each line in your case statement. In some lines, you can do two conditions (as in the first two lines), and in others you can do one (as in line three).

link|improve this answer
This did the trick. Thanks!! – SidC Oct 14 '09 at 18:56
feedback

Normalize your data, create a new table, with a composite primary key on Race+Ethnicity:

YourNewTable

Race       CHAR(1)     PK
Ethnicity  CHAR(1)     PK
ETH        VARCHAR(50)

make a foreign key to your other table, and join to show ETH:

SELECT
    o.Race
       ,o.ETHNICITY  
       ,n.ETH
    FROM YourTable               o
        INNER JOIN YourNewTable  n ON o.Race=n.Race AND o.Ethnicity=n.Ethnicity
link|improve this answer
+1, go with the table rather than a series of case statements. – Yishai Oct 14 '09 at 19:00
feedback

Your Answer

 
or
required, but never shown

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