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
Explain a synonym?
What is partitioned table in Oracle?
what are archived logs?
What is hot backup and logical backup?
How do I reset a sequence in oracle?
Is postgres faster than oracle?
How to retrieve values from data fields in record variables?
What is the Tune Query
What is a static data dictionary in oracle?
What is the usage of save points in oracle database?
How to run create database statement?
how can db_files > maxdatafiles since db_files is for instance and the later is for database
What is SQL Tuning Advisor in Oracle?
How to define a sub function?
What is using clause and give example?