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
How oracle handles dead locks?
State and explain about oracle instance?
What is a snapshot log?
What is a system tablespace?
What is a table in oracle?
How to drop a stored procedure in oracle?
What is the parameter mode that can be passed to a procedure?
What are the advantages of oracle 12c?
Explain mutating triggers.
Explain how you would restore a database using RMAN to Point in Time?
What are the types of partitions in oracle?
State and explain the different types of data models?
Explain the use of indexes option in imp command.
What is the sql query to concatenate column values from multiple rows in oracle?
What is procedure overloading in oracle?