SQL haiku

Feb 18, 2015 21:18

At work there are some whiteboard walls. One of them used to be covered with puns, but recently the puns were erased and replaced with haiku. Since our company writes so much SQL, I thought it would be fun to contribute some haiku in SQL.

create view rainbow
as select distinct color
from meadow.flowers;

select count(flowers)
from meadow where wind is null
group by color, shape;

insert into heart
(select feeling from moment
where timestamp is null);

We also write an awful lot of Perl.

foreach $flower (@field) {
$rainbow{$flower->{HUE}}++ };
print sort keys %rainbow;

nerdity, silly

Previous post Next post
Up