Misc Oracle SQL SELECT Examples
SELECT - All columns
Return all columns.
SELECT
*
FROM COURSES
SELECT - Return first 10 rows
Run a SQL Select statement and limit the number of rows returned.
Useful when you are not sure of how to limit the recordset to be
returned and you only want to return a few rows to do some initial
analysis.
SELECT
COURSE_DESIGNATER ,
COURSE_NAME ,
EMPLOYEE_INACTIVATING
FROM COURSES
WHERE RowNum < 11
SELECT - Count rows in table
Returns a count of the total number of rows in a table.
SELECT COUNT(*) from COURSES
SELECT - Joining tables
Join two Oracle tables together.
SELECT
b.COURSE_NAME ,
a.CLASS_END_DATE ,
a.CLASS_START_DATE
FROM CLASSES a
JOIN COURSES b
ON b.COURSE_DESIGNATER = a.COURSE_DESIGNATER_FK
WHERE RowNum < 100
/
If you find this site useful and are a book buyer/reader...
You can support my site by clicking on one of the Links below to Abe books
By doing this, I will receive a small commision on your purchase and making your purchase
will not cost you any more money than if you went directly the site yourself!
Abe Books sells books at a fraction of the original cost. I
have purchased many books from them originally cost $40.00 for as little as $5 to $10 dollars
including shipping costs
Click on applicable icon to find books at Abe Books on ...
|
| Oracle 8i and 9i |
Oracle 10g |
PL/SQL |
|
|
|
|
|
Abe Books is one of my affiliates. I only use affiliates that I also
purchase products from. I love Abe books. If it is printed they likely
have a copy. I have also included a generic link to Abe Books below.
Once on their site, you will find that they have a nice, easy to use search engine so
to find what you are looking for. |

|