Subject Select...Into vs Assignment
Author Kevin Lingofelter
Hello,

In PSQL is there a difference between these 2 statements:

select CREATEGUID() from RDB$DATABASE into :USERID;

-and-

USERID = CREATEGUID();

Or is it just a coding style/preference decision?

Kevin Lingofelter