Return all columns.
SELECT * FROM COURSES
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
Returns a count of the total number of rows in a table.
SELECT COUNT(*) from COURSES
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
/
