-
Notifications
You must be signed in to change notification settings - Fork 2
sql_oracle
Kelli Johnson edited this page Oct 5, 2020
·
1 revision
Tips and tricks for writing sql data queries for extracting data from a data base. This is largely general information, but some of it might be specific to writing queries for oracle data bases.
SELECT table_name
FROM all_tables
ORDER BY table_name;
SELECT DISTINCT columname1, columnname2
FROM database.table;