i have to create a view in SQL as like in ORACLE DATA
EXPRESS EDITION
Answer Posted / mugdha taru
create view <view name> as select * from <table name> where
<condition>;
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
How do you achieve runtime polymorphism?
Question: Implement a base class Appointment and derived classes Onetime, Daily, Weekly, and Monthly. An appointment has a description (for example, “see the dentist”) and a date and time. Write a virtual function occurs_on(int year, int month, int day) that checks whether the appointment occurs on that date. For example, for a monthly appointment, you must check whether the day of the month matches. Then fill a vector of Appointment* with a mixture of appointments. Have the user enter a date and print out all appointments that happen on that date.
What are benefits of oop?
why reinterpret cast is considered dangerous?
What is an interface in oop?
How long to learn object oriented programming?
What is encapsulation in oop?
What is abstraction in oops?
What are properties in oop?
Why do while loop is used?
Can a destructor be called directly?
What is abstract class in oops?
What is polymorphism what is it for and how is it used?
Where You Can Use Interface in your Project
Why polymorphism is used in oops?