how to create object in plsql

Answers were Sorted based on User's Feedback



how to create object in plsql..

Answer / ayan banerjee

create type type_name as object
()

Is This Answer Correct ?    9 Yes 0 No

how to create object in plsql..

Answer / priya

create type type_name as object
(
No NUMBER,
Name Varchar2(15),
City VARCHAR2(30,
POSTALCODE CHAR()
);

Is This Answer Correct ?    7 Yes 0 No

Post New Answer

More SQL PLSQL Interview Questions

How does a self join work?

0 Answers  


What is the difference between the implicit and explicit cursors?

0 Answers  


Can we use delete in merge statement?

0 Answers  


tell us something about heap tables. : Sql dba

0 Answers  


What is an alias command?

0 Answers  






How do you copy a table in sql?

0 Answers  


Can u create a primary key with out unique index.

8 Answers  


how to rename an existing column in a table? : Sql dba

0 Answers  


What is the difference between inner join and outer join?

0 Answers  


how can I make a script that can be bi-language (supports english, german)? : Sql dba

0 Answers  


Write a pl/sql script to display the following series of numbers: 99,96,93……9,6,3?

1 Answers  


What is the purpose of the primary key?

0 Answers  


Categories