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 does enum stand for?

607


Advantage and disadvantage of routing in telecom sector

783


#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

2064


What is encapsulation example?

545


What is abstract class in oop?

528






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

2162


What are the 4 main oop principles?

679


write a programe to calculate the simple intrest and compund intrest using by function overlading

1666


hi all..i want to know oops concepts clearly can any1 explain??

1681


officer say me - i am offered to a smoking , then what can you say

1578


What is for loop and its syntax?

596


What is the types of inheritance?

600


What is a class oop?

592


What causes polymorphism?

569


What is the important feature of inheritance?

631