Hi,
I want table structure shown below. How can i create this ?
Num Name Address
Addr1 Addr2
I want Addr1 and Addr2 under Address column.
How can i achive this ? Is it possible ?
Answer Posted / ashok
create table emp(num number(5),name varchar2(14),address
varchar2(15));
insert into emp values('&num','&name','&address');
Enter value for num:
Enter value for name:
Enter value for address: addr1 addr2
old 1: insert into emp values('&num','&name','&address')
new 1: insert into emp values('','','addr1 addr2')
| Is This Answer Correct ? | 1 Yes | 12 No |
Post New Answer View All Answers
What are the built-in functions used for sending Parameters to forms ?
What is the difference between post-database commit and post-form commit?
Why do we need oracle client?
How to use fetch statement in a loop?
What is ordinary table in oracle?
How can you tell how much space is left on a given file system and how much space each of the file systems subdirectories take-up?
Explain the use of record length option in exp command.
What is Reduced List of Values?
What is an oracle database table?
What is the parameter mode that can be passed to a procedure?
Is it possible to center an object horizontally in a repeating frame that has a variable horizontal size ?
What is recycle bin in Oracle?
What is the difference between view and materialized view in Oracle?
How to lock and unlock a user account in oracle?
How do I know if oracle client is installed on windows?