[SQL] Trigger problem

2004-06-09 Thread kasper
but nothing changes... any ideas?? - Kasper ---(end of broadcast)--- TIP 2: you can get off all lists at once with the unregister command (send "unregister YourEmailAddressHere" to [EMAIL PROTECTED])

[SQL] multi results with functions

2004-05-31 Thread kasper
Hi Im trying to make a stored procedure that returns * from at table, and returns multible rows. Can you do that, and how? basically I would like to do: create or replace function test () returns record as ' select * from dummytable; ' language sql; Thank