Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> PL/SQL Insert
Is there a simple way to INSERT a row without having to list each field name?
Here's a code example...
DECLARE data_record data_file%ROWTYPE;
BEGIN;
data_record.fld_a := 'ABC123';
data_record.fld_b := 1234.56;
INSERT INTO data_file
{what to put here?}
END; I have a large record with over 100 fields and listing them (specifically maintaining them) is a hassle.
Your help is appreciated.
-----== Posted via Deja News, The Leader in Internet Discussion ==----- http://www.dejanews.com/rg_mkgrp.xp Create Your Own Free Member Forum Received on Wed Sep 02 1998 - 15:07:14 CDT
![]() |
![]() |