vote up -3 vote down star

I am writing a script using DBI to execute a select query to an Oracle db. I have successfully able to capture the data but I need help to change the output.

Below is the sample output.

Type
2
6

I want to display 2=>Good and 6=>Bad

Can anyone please suggest me the Perl code to map the output?

flag

4 Answers

vote up 5 vote down check

Usually the easiest way is to change directly the values outputted by the SQL query. With Oracle you can use DECODE.

SELECT DECODE(MY_TYPE, 2, 'TWO', 6, 'SIX', 'DEFAULT_VALUE') FROM MY_TABLE

The standard SQL way is to use a CASE conditional expression. It is a little more verbose, but more powerful and more portable. It works for example in Oracle, PostgreSQL and MS-SQL.

SELECT 
    CASE 
        WHEN MY_TYPE = 2 THEN 'TWO'
        WHEN MY_TYPE = 6 THEN 'SIX'
        ELSE 'DEFAULT_VALUE'
    END CASE 
FROM MY_TABLE

If you still want to do it in Perl, you might create a Hash. The code sample is quite trivial, and well documented in the link I provided.

link|flag
+1 Both ideas are good. – Makis Aug 4 at 9:36
Thanks Steve, I have tried DECODE and its working. Is there any way to do the same in postgres also OR should I have to use perl only for this. – Octopus Aug 4 at 9:55
@Octopus: I edited the answer to add the portable way to do it. (I didn't since you only mentioned Oracle at first, and DECODE is much simpler to use) – Steve Schnepp Aug 4 at 10:37
vote up 5 vote down
# Create a hash of the values you want to output
my %human_text = (2 => 'Good', 6 => 'Bad');

# and then access the hash values like this:
print $human_text{2}; #will output 'Good'
print $human_text{6}; #will output 'Bad'
link|flag
+1 @okko.net for the Perl solution but it is better to do data transformation on the SQL side. – Sinan Ünür Aug 5 at 4:05
@Sinan Ünür: Why it's better to do data transformation on the SQL side ? The data transformation here is a 'displaying job', I don't see any reason to give it to SQL side... Am I wrong ? – sebthebert Aug 6 at 23:23
vote up 0 vote down

Create a lookup table in your RDBMS which maps 2 to Good and 6 to Bad. Create an INNER JOIN (or LEFT JOIN if you anticipate having values that will not match the lookup) with your SQL statement (or create a VIEW which returns the JOINed tables). Trying to use Perl or SQL SELECT statements to replace database design is probably a bad idea.

link|flag
vote up 0 vote down

$inWords = ("","very good","good","satisfactory","sufficient","poor","bad")[$number];

link|flag

Your Answer

Get an OpenID
or

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