how to find the 2nd higgest salary in the column for example take table name is employee? And also find bottom 2nd lowest salary ?
11 16090If density of cement is 1500 Kg/m3, the how is specific gravity 3.15 ? (Density of water is 1000 Kg/m3)
2385Post New GeoTechnology Interview Questions
Can you define cluster sampling?
What is trigger in sql? Explain
What are the features of the c language?
How do I clear my inbox?
What is a heap dump?
Please clarify 1. Icw: rated short circuit working withstand capacity 2. Icu: Rated ultimate breaking capacity 3. Ics: Rated service short circut withstand capacity 4. other specification of ACB
What is solver in excel?
EXPAND___________NBW
How to make deductions of the employees from salary against the loan in AP module oracle R12
what are the different ripple removing circuit . which one is better and why
How java is used in web applications?
Why is inheritance not desirable in swift?
Explain the main difference between kafka and flume?
Explain what is sap script? What is the purpose of sap script? Difference between sap script and report?
main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }