Re: Need help for inserting records in run time
Posted by: AMIRTHA SUGHI DAVEED
Date: August 23, 2017 01:39AM

Consider the inserts we do as below in Oracle

SQL> insert into class values('&name',&id);
Enter value for name: Ann
Enter value for id: 1
old 1: insert into class values('&name',&id)
new 1: insert into class values('Ann',1)
1 row created.

SQL> /
Enter value for name: Bean
Enter value for id: 02
old 1: insert into class values('&name',&id)
new 1: insert into class values('Bean',02)
1 row created.

I want the same in MySql.

Options: ReplyQuote


Subject
Written By
Posted
Re: Need help for inserting records in run time
August 23, 2017 01:39AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.