http://www.perlmonks.org?node_id=996263

emptyfull has asked for the wisdom of the Perl Monks concerning the following question:

using ActivePerl
v5.10.0 built for MSWin32-x86-multi-thread
Executing following sql produces no error from DBI
it completely ignores division by zero.
create table #t (
v int not null
) insert #t values (1)
insert #t values (10)
insert #t values (12)
insert #t values (0)
select 10/v from #t