i have to create a view in SQL as like in ORACLE DATA
EXPRESS EDITION

Answer Posted / palsaniya sadikhasan, meta.

create <view name> as select * from <table name>;

Is This Answer Correct ?    2 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the difference between encapsulation and polymorphism?

846


to find out the minimum of two integer number of two different classes using friend function

1874


What is difference between pop and oop?

821


What is cohesion in oop?

849


#include #include #include #include void select(char *items, int count); int main(void) { char s[255]; printf("Enter a string:"); gets(s); select(s, strlen(s)); printf("The sorted string is: %s.\n", s); getch(); return 0; } void select(char *items, int count) { register int a, b, c; int exchange; char t; for(a = 0; a < count-1; ++a) { exchange = 0; c = a; t = items[ a ]; for(b = a + 1; b < count; ++b) { if(items[ b ] < t) { c = b; t = items[ b ]; exchange = 1; } } if(exchange) { items[ c ] = items[ a ]; items[ a ] = t; } } } design an algorithm for Selection Sort

2334


What is overloading in oops?

847


What are the benefits of oop?

879


What is an interface in oop?

785


What is the purpose of polymorphism?

887


What is use of overloading?

865


is there any choice in opting subjects like 4 out of 7

1941


How Do you Code Composition and Aggregation in C++ ?

24737


How do you achieve runtime polymorphism?

750


Why do we use class in oops?

753


Will I be able to get a picture in D drive to the c++ program? If so, help me out?

1882