Tech Blog

subscribe to my new blog http://beacrazyprogrammer.com/

Labels

  • Android
  • C
  • C++
  • DataStructures
  • Java
  • OS
  • PLSQL
  • PUZZLE
  • SQL

Monday, 11 November 2013

ORACLE - SQL Query - 1


Posted by Unknown at 23:15 No comments:
Email ThisBlogThis!Share to XShare to FacebookShare to Pinterest
Labels: SQL
Newer Posts Older Posts Home
Subscribe to: Posts (Atom)

Amazon India

Subscribe in a reader

Total Pageviews

Popular Posts

  • C program to return the nth node from the end of a linked list.
    Suppose one needs to get to the 6th node from the end in this LL. First, just keep on incrementing the first pointer (ptr1) till the number...
  • C++ program to evaluate postfix expression
    #include<iostream> using namespace std; #include<conio.h> #include<string.h> template<class T> class evaluatio...
  • implementation of circular queue using arrays in c language
    #include<stdio.h> #include<conio.h> #include<process.h> #define MAX 5 int queue[MAX],front=0,rear=0; void insertion...
  • to implement the heterogeneous linked list in C language, what pointer type will you use?
    The heterogeneous linked list contains different data types in its nodes and we need a link, pointer to connect them. It is not possible to...
  • How to read a singly linked list backwards (or) how to reverse a single linked list
    solution1--reverse the list and read it.. struct node* reverseList(struct node* head) { struct node *ptr1,*ptr2,*first,*last; if(head=...
  • Heap Sort Program in C++
    #include<iostream> using namespace std; #include<conio.h> template<class T> void heapsort(T a[],int n) {      int x...
  • Given two strings A and B, how would you find out whether the characters in B were a subset of the characters in A?
    #include < stdio.h > #include < conio.h > int isSubset(char *a, char *b); int main() { char str1[]="defabc"; char str...
  • custom strcpy function in c to copy a string
    #include<stdio.h> #include<conio.h> void mystrcpy(char *dest,const char*src) { while(*src) {  *dest=*src;  src++; ...
  • Write your own C program to implement the atoi() function
    int myatoi(const char *string); int main(int argc, char* argv[]) { printf("\n%d\n", myatoi("1992"));  getch(); return 0...
  • custom strcmp function in c to compare two strings
    #include<stdio.h> #include<string.h> #include<conio.h> int mystrcmp(const char*s1,const char*s2) { int r=0; whi...

Pages

  • Home

Blog Archive

  • ►  2014 (1)
    • ►  January (1)
  • ▼  2013 (35)
    • ►  December (1)
    • ▼  November (1)
      • ORACLE - SQL Query - 1
    • ►  October (26)
    • ►  September (3)
    • ►  August (1)
    • ►  May (1)
    • ►  March (2)
  • ►  2012 (47)
    • ►  December (3)
    • ►  October (1)
    • ►  September (4)
    • ►  August (39)

About Me

Unknown
View my complete profile
Picture Window theme. Powered by Blogger.