GeekArticles
Microsoft
ASP.NETCodeSnip: How to Select the Records from a Table Following a Pattern without Using ROWNUM
Author: aspalliance.com |
Published: 15th Apr 2008 |
Visited: 74 times |
Add CommentFiled in: ASP NETIn this article Deepankar discusses how to select records from an Oracle 9i table without using ROWNUM. Deepankar provides a detailed analysis of each SQL statement along with the screenshot of the final output.
Read Article Sponsored Links
Related Articles
• CodeSnip: Unexpected behavior with C# auto-implemented properties In this code snippet, Joseph examines a scenario of an unexpected behavior which will happen while using C# auto-implemented properties with reflection. After providing a step-by-step description of the scenario, he provides the complete code listing of all the C# files used in the sample project al ...
• External table intermittent errors I'm having a problem with External tables. Most of the time I can read the data in the table without any issue. But when I issue the query below I get an error.
<b>Contents of test.csv file</b>
<code>Tool type,ID
Common,1
Type1,2
Type2,3 ...
• MySQL Table Manager MySQL engine permits user level locks. The program explains how to manipulate these lock ty ...
• CodeSnip: How to make use of parameterized cursor in Oracle Often it is convenient to pass a given set of values as input parameter to a cursor. It is very useful where nested cursors are used. Parameterizing the cursor makes it more usable and avoids the limitation of hard coding values in where the clause. In this code snippet, Deepankar examines this tech ...