├── .gitignore ├── 0 Entity-Relationship ├── 0.1_E-R_enunciado.md └── 0.1_E-R_solucion.drawio.png ├── 1 Select simples ├── 1.1_Selects-simples_enunciados.md ├── 1.1_Selects-simples_soluciones.sql ├── 1.2_Selects-con-funciones_enunciados.md └── 1.2_Selects-con-funciones_soluciones.sql ├── 2 JOINS ├── 2.1_subconsultas y JOINS_enunciados.md └── 2.1_subconsultas y JOINS_soluciones.sql ├── 3 DML ├── 3.1_DML_enunciado.md └── 3.1_DML_soluciones.sql ├── 4 DDL ├── 4.1_DDL_enunciado.md ├── 4.1_DDL_soluciones.sql ├── 4.2_DDL_enunciado.md ├── 4.2_DDL_soluciones.sql ├── 4.3_DDL&DML_enunciado.md └── 4.3_DDL&DML_soluciones.sql ├── README.md ├── Referencias Oracle ├── Database Limits.pdf └── SQL Language Reference.pdf ├── SQL.v2.4.pdf ├── Schema HR ├── crear usuario.sql ├── hr_cre.sql ├── hr_idx.sql ├── hr_popul.sql └── hr_schema.jpg └── services ├── start.bat └── stop.bat /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .DS_Store 3 | .env -------------------------------------------------------------------------------- /0 Entity-Relationship/0.1_E-R_enunciado.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanparomero/aprendeSQL/HEAD/0 Entity-Relationship/0.1_E-R_enunciado.md -------------------------------------------------------------------------------- /0 Entity-Relationship/0.1_E-R_solucion.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanparomero/aprendeSQL/HEAD/0 Entity-Relationship/0.1_E-R_solucion.drawio.png -------------------------------------------------------------------------------- /1 Select simples/1.1_Selects-simples_enunciados.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanparomero/aprendeSQL/HEAD/1 Select simples/1.1_Selects-simples_enunciados.md -------------------------------------------------------------------------------- /1 Select simples/1.1_Selects-simples_soluciones.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanparomero/aprendeSQL/HEAD/1 Select simples/1.1_Selects-simples_soluciones.sql -------------------------------------------------------------------------------- /1 Select simples/1.2_Selects-con-funciones_enunciados.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanparomero/aprendeSQL/HEAD/1 Select simples/1.2_Selects-con-funciones_enunciados.md -------------------------------------------------------------------------------- /1 Select simples/1.2_Selects-con-funciones_soluciones.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanparomero/aprendeSQL/HEAD/1 Select simples/1.2_Selects-con-funciones_soluciones.sql -------------------------------------------------------------------------------- /2 JOINS/2.1_subconsultas y JOINS_enunciados.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanparomero/aprendeSQL/HEAD/2 JOINS/2.1_subconsultas y JOINS_enunciados.md -------------------------------------------------------------------------------- /2 JOINS/2.1_subconsultas y JOINS_soluciones.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanparomero/aprendeSQL/HEAD/2 JOINS/2.1_subconsultas y JOINS_soluciones.sql -------------------------------------------------------------------------------- /3 DML/3.1_DML_enunciado.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanparomero/aprendeSQL/HEAD/3 DML/3.1_DML_enunciado.md -------------------------------------------------------------------------------- /3 DML/3.1_DML_soluciones.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanparomero/aprendeSQL/HEAD/3 DML/3.1_DML_soluciones.sql -------------------------------------------------------------------------------- /4 DDL/4.1_DDL_enunciado.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanparomero/aprendeSQL/HEAD/4 DDL/4.1_DDL_enunciado.md -------------------------------------------------------------------------------- /4 DDL/4.1_DDL_soluciones.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanparomero/aprendeSQL/HEAD/4 DDL/4.1_DDL_soluciones.sql -------------------------------------------------------------------------------- /4 DDL/4.2_DDL_enunciado.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanparomero/aprendeSQL/HEAD/4 DDL/4.2_DDL_enunciado.md -------------------------------------------------------------------------------- /4 DDL/4.2_DDL_soluciones.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanparomero/aprendeSQL/HEAD/4 DDL/4.2_DDL_soluciones.sql -------------------------------------------------------------------------------- /4 DDL/4.3_DDL&DML_enunciado.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanparomero/aprendeSQL/HEAD/4 DDL/4.3_DDL&DML_enunciado.md -------------------------------------------------------------------------------- /4 DDL/4.3_DDL&DML_soluciones.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanparomero/aprendeSQL/HEAD/4 DDL/4.3_DDL&DML_soluciones.sql -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanparomero/aprendeSQL/HEAD/README.md -------------------------------------------------------------------------------- /Referencias Oracle/Database Limits.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanparomero/aprendeSQL/HEAD/Referencias Oracle/Database Limits.pdf -------------------------------------------------------------------------------- /Referencias Oracle/SQL Language Reference.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanparomero/aprendeSQL/HEAD/Referencias Oracle/SQL Language Reference.pdf -------------------------------------------------------------------------------- /SQL.v2.4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanparomero/aprendeSQL/HEAD/SQL.v2.4.pdf -------------------------------------------------------------------------------- /Schema HR/crear usuario.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanparomero/aprendeSQL/HEAD/Schema HR/crear usuario.sql -------------------------------------------------------------------------------- /Schema HR/hr_cre.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanparomero/aprendeSQL/HEAD/Schema HR/hr_cre.sql -------------------------------------------------------------------------------- /Schema HR/hr_idx.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanparomero/aprendeSQL/HEAD/Schema HR/hr_idx.sql -------------------------------------------------------------------------------- /Schema HR/hr_popul.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanparomero/aprendeSQL/HEAD/Schema HR/hr_popul.sql -------------------------------------------------------------------------------- /Schema HR/hr_schema.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanparomero/aprendeSQL/HEAD/Schema HR/hr_schema.jpg -------------------------------------------------------------------------------- /services/start.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanparomero/aprendeSQL/HEAD/services/start.bat -------------------------------------------------------------------------------- /services/stop.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanparomero/aprendeSQL/HEAD/services/stop.bat --------------------------------------------------------------------------------