F How to insert values in a table in Oracle 10g | CodeTheta

How to insert values in a table in Oracle 10g

April 26, 2021

Code :
INSERT INTO student ( id, first_name, last_name )
VALUES( '1', 'subhajit', 'naskar' );


Output :
1 row(s) inserted.

IDE Used To Test This Code : Oracle 10g.

Try this code in your computer for better understanding. Enjoy the code. If you have any Question you can contact us or mail us. We will reply you as soon as possible.

Post a Comment