in reply to mssql query

but how can I do this query in perl without it throwing up an error because I haven't declared @IDENTITY?
Read `perldoc perlsyn', `perldoc perlop'
use strict; use warnings; my @STUFF = 1..4; print "HI there @STUFF",$/; print 'HI there @STUFF',$/; __END__ HI there 1 2 3 4 HI there @STUFF
update: `perldoc perlintro' I also changed perlquote to perlop ;)

MJD says "you can't just make shit up and expect the computer to know what you mean, retardo!"
I run a Win32 PPM repository for perl 5.6.x and 5.8.x -- I take requests (README).
** The third rule of perl club is a statement of fact: pod is sexy.