* Jess Robinson <[EMAIL PROTECTED]> [2006-07-17 00:30]:
> What did you need it for?

Basically, in Oracle, you can’t say things like

    SELECT NOW();

because a SELECT without a `FROM` clause is a syntax error. So
instead it has this weird special-case single-row, single-column
table called `dual` that always exists, so you have to say things
like that like so:

    SELECT SYSDATE FROM dual;

Isn’t Oracle cool?

Regards,
-- 
Aristotle Pagaltzis // <http://plasmasturm.org/>

_______________________________________________
List: http://lists.rawmode.org/cgi-bin/mailman/listinfo/dbix-class
Wiki: http://dbix-class.shadowcatsystems.co.uk/
IRC: irc.perl.org#dbix-class
SVN: http://dev.catalyst.perl.org/repos/bast/trunk/DBIx-Class/
Searchable Archive: http://www.mail-archive.com/[email protected]/

Reply via email to