its very simple
just write:
// first create a table called test ....
create table test (name varchar2(10),age number(5));
// when you run the above code, a table will be created ....
// now we have to insert the name and age.
Make sure that age is inserted through the opening of the form, which is looking for our help, to enter a value in it
insert into test values('Deepak', :age);
// now run the above code and you will get "1 line inserted" output ...
/ now run the select query to see the output
select * from test;
// that's all .. Now I think that no one has any questions left after accepting user data ...
kaushik
source share