Difference between ASP Session and ASP.NET Session ?
asp.net session supports cookie less session & it can span across multiple servers. Read more »
asp.net session supports cookie less session & it can span across multiple servers. Read more »
If there is an ORDER BY clause, rows are fetched, sorted and made available for the FETCH statement. Other wise simply the cursor is placed on the first row. Read more »
A join is a relational operation that allows retrieval of data from two or more tables based on matching columns values. Read more »
It is a column or set of columns in a table used to determine the order of index entries. Read more »
To do partial search e.g. to search employee by name, you need not specify the complete name; using LIKE, you can search for partial string matches. Read more »
LIKE is used for partial string matches. ‘%’ ( for a string of any character ) and ‘_’ (for any single character ) are the two wild card... Read more »
BETWEEN supplies a range of values while IN supplies a list of values. Read more »
It has to be in a CURSOR. Read more »
SELECT SUBSTR(FIRSTNAME,1,5) FROM EMP; Read more »
Because SALARY is not declared to have Null’s and the employees for whom the salary is not known are also counted. Read more »