Language SQL
(DB2 / ANSI)
| Date: | 11/29/05 |
| Author: | Kent Olsen |
| URL: | n/a |
| Comments: | 1 |
| Info: | n/a |
| Score: |
SELECT
CASE (bottlecount)
WHEN 0 THEN 'No more bottle of beer on the wall, no more bottles of beer. ' ||
'Go to the store and buy some more, 99 bottles of beer on the wall.'
WHEN 1 THEN '1 bottle of beer on the wall, 1 bottle of beer. ' ||
'Take one down and pass it around, no more bottles of beer on the wall.'
WHEN 2 THEN '2 bottles of beer on the wall, 2 bottles of beer. ' ||
'Take one down and pass it around, 1 bottle of beer on the wall.'
ELSE
rtrim (cast((BottleCount) as char(2))) || ' bottles of beer on the wall, ' ||
rtrim (cast((BottleCount) as char(2))) || ' bottles of beer. ' ||
'Take one down and pass it around, ' ||
rtrim (cast((BottleCount)-1 as char(2))) || ' bottles of beer on the wall.'
END
FROM
(
SELECT avalue * 10 + bvalue as bottlecount
FROM
(VALUES (9), (8), (7), (6), (5), (4), (3), (2), (1), (0)) a(avalue),
(VALUES (9), (8), (7), (6), (5), (4), (3), (2), (1), (0)) b(bvalue)
) as valuelist;
Download Source | Write Comment
Alternative Versions
| Version | Author | Date | Comments | Rate |
|---|---|---|---|---|
| Oracle 9i+ hierarchical query | Christoph Linder | 11/21/07 | 0 | |
| MS SQL 2000 | David Teviotdale | 09/07/05 | 4 | |
| MS-Transact-SQL 8.00 | Karl | 07/06/05 | 0 | |
| Self contained Oracle 9i+ Version | Chris Farmer | 11/10/05 | 0 | |
| MS SQL 2005 | Johan Åhlén | 09/28/09 | 1 | |
| CROSS JOIN - UNPIVOT - SQL SERVER 2008 | Nick Jacobsen | 09/18/11 | 0 | |
| standard version | Rob van de Pol | 04/20/05 | 0 | |
| Oracle, DBA Version | Thomas Rein | 02/03/07 | 0 | |
| DB2, no redundancy, with recursion | Joachim Banzhaf | 05/17/06 | 0 | |
| Produces the exact lyrics, ORACLE | Ernst Madsen | 09/23/05 | 0 |
Download Source | Write Comment
Add Comment
Please provide a value for the fields Name,
Comment and Security Code.
This is a gravatar-friendly website.
E-mail addresses will never be shown.
Enter your e-mail address to use your gravatar.
Please don't post large portions of code here! Use the form to submit new examples or updates instead!
Comments