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
Illustrate how to determine the amount of physical CPUs a Unix Box possesses (LINUX and/or Solaris).
State the difference along with examples between Oracle 9i, Oracle 10g and Oracle 11i.
How to get a list of all user accounts in the database?
How to run the anonymous block again?
How to define an anonymous block?
What is a trigger oracle?
What is the usage of control file in oracle?
How do you increase the OS limitation for open files (LINUX and/or Solaris)?
What is instant client oracle?
What is java oracle used for?
Explain the truncate in oracle?
What is an oracle table?
How different is ms access and oracle?
How to execute a stored procedure in oracle?
Explain joins in oracle?