[GENERAL] newbie question - INSERT

2001-04-10 Thread Cefull Lo
When I type INSERT INTO friend VALUES ('', '', ''); it returns INSERT 19748 1 what means of 19748 and 1? ---(end of broadcast)--- TIP 2: you can get off all lists at once with the unregister command (send "unregister YourEmailAddressHere" to

Re: [GENERAL] newbie question - INSERT

2001-04-10 Thread Dominic J. Eidson
On Tue, 10 Apr 2001, Cefull Lo wrote: > When I type INSERT INTO friend > VALUES ('', '', ''); > it returns > INSERT 19748 1 > > what means of 19748 and 1? 19748 is the OID of that record, and 1 means one record was inserted. For information on OID's, look in the documentation. -- Dominic J.