├── .gitignore ├── 1_Basic_intro ├── Exercise1(re-do).sql ├── Exercise1.sql ├── Relational Table.pdf └── Simple Tests │ ├── sql1_deletion.sql │ ├── sql1_insertion.sql │ ├── sql1_selection.sql │ └── sql1_update.sql ├── 2_SQL_Queries ├── Block1 (AllTheBooks Table).sql ├── Block2 (FlyWithOther Table).sql ├── List of queries.pdf └── Tables │ ├── AllTheBooks.sql │ └── FlyWithOther.sql ├── 3_Triggers:Procedures ├── 1_Contracts_Routes_Triggers.sql ├── 2_Deparments_employees_changes.sql ├── 3_Exercise2_PL_SQL.sql ├── 4_ScriptExercises PLSQL.sql ├── Assigmnet 5.docx └── Example DBMS_output.txt ├── LICENSE └── Readme.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /1_Basic_intro/Exercise1(re-do).sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferreiro/SQL-Oracle-databases/HEAD/1_Basic_intro/Exercise1(re-do).sql -------------------------------------------------------------------------------- /1_Basic_intro/Exercise1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferreiro/SQL-Oracle-databases/HEAD/1_Basic_intro/Exercise1.sql -------------------------------------------------------------------------------- /1_Basic_intro/Relational Table.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferreiro/SQL-Oracle-databases/HEAD/1_Basic_intro/Relational Table.pdf -------------------------------------------------------------------------------- /1_Basic_intro/Simple Tests/sql1_deletion.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferreiro/SQL-Oracle-databases/HEAD/1_Basic_intro/Simple Tests/sql1_deletion.sql -------------------------------------------------------------------------------- /1_Basic_intro/Simple Tests/sql1_insertion.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferreiro/SQL-Oracle-databases/HEAD/1_Basic_intro/Simple Tests/sql1_insertion.sql -------------------------------------------------------------------------------- /1_Basic_intro/Simple Tests/sql1_selection.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferreiro/SQL-Oracle-databases/HEAD/1_Basic_intro/Simple Tests/sql1_selection.sql -------------------------------------------------------------------------------- /1_Basic_intro/Simple Tests/sql1_update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferreiro/SQL-Oracle-databases/HEAD/1_Basic_intro/Simple Tests/sql1_update.sql -------------------------------------------------------------------------------- /2_SQL_Queries/Block1 (AllTheBooks Table).sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferreiro/SQL-Oracle-databases/HEAD/2_SQL_Queries/Block1 (AllTheBooks Table).sql -------------------------------------------------------------------------------- /2_SQL_Queries/Block2 (FlyWithOther Table).sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferreiro/SQL-Oracle-databases/HEAD/2_SQL_Queries/Block2 (FlyWithOther Table).sql -------------------------------------------------------------------------------- /2_SQL_Queries/List of queries.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferreiro/SQL-Oracle-databases/HEAD/2_SQL_Queries/List of queries.pdf -------------------------------------------------------------------------------- /2_SQL_Queries/Tables/AllTheBooks.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferreiro/SQL-Oracle-databases/HEAD/2_SQL_Queries/Tables/AllTheBooks.sql -------------------------------------------------------------------------------- /2_SQL_Queries/Tables/FlyWithOther.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferreiro/SQL-Oracle-databases/HEAD/2_SQL_Queries/Tables/FlyWithOther.sql -------------------------------------------------------------------------------- /3_Triggers:Procedures/1_Contracts_Routes_Triggers.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferreiro/SQL-Oracle-databases/HEAD/3_Triggers:Procedures/1_Contracts_Routes_Triggers.sql -------------------------------------------------------------------------------- /3_Triggers:Procedures/2_Deparments_employees_changes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferreiro/SQL-Oracle-databases/HEAD/3_Triggers:Procedures/2_Deparments_employees_changes.sql -------------------------------------------------------------------------------- /3_Triggers:Procedures/3_Exercise2_PL_SQL.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferreiro/SQL-Oracle-databases/HEAD/3_Triggers:Procedures/3_Exercise2_PL_SQL.sql -------------------------------------------------------------------------------- /3_Triggers:Procedures/4_ScriptExercises PLSQL.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferreiro/SQL-Oracle-databases/HEAD/3_Triggers:Procedures/4_ScriptExercises PLSQL.sql -------------------------------------------------------------------------------- /3_Triggers:Procedures/Assigmnet 5.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferreiro/SQL-Oracle-databases/HEAD/3_Triggers:Procedures/Assigmnet 5.docx -------------------------------------------------------------------------------- /3_Triggers:Procedures/Example DBMS_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferreiro/SQL-Oracle-databases/HEAD/3_Triggers:Procedures/Example DBMS_output.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferreiro/SQL-Oracle-databases/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferreiro/SQL-Oracle-databases/HEAD/Readme.md --------------------------------------------------------------------------------