Useful Queries in SQL Fetch alternate(even number) records from emp table. SELECT * FROM emp WHERE rowid IN (SELECT DECODE(MOD(rownum,2),0,rowid,NULL) FROM emp); Fetch alternate(odd numbered) records from emp table. SELECT * FROM emp WHERE rowid IN (SELECT DECODE(MOD(rownum,2),0,NULL ,rowid) FROM emp); Find out the third maximum salary in the emp …
Read More »Core Controls in ASP.NET
This article gives an overview of how to use the core controls contained in ASP.NET framework. These core controls used to build every application in ASP.NET. Given article explains how these core controls display the information to users. Display information using Label and Literal controls:- ASP.NET Framework includes two controls …
Read More »