SlideShare a Scribd company logo
1 of 26
Diego E. Guamán E. Consultas en sparql
Obras de Vivaldi PREFIX su: <http://dbpedia.org/resource/Antonio_Vivaldi> PREFIX ob: <http://dbpedia.org/property/title> select * where{ su: ob: ?obrasVivaldi }
Discos de Heavy Metal PREFIX su: <http://dbpedia.org/resource/Heavy_metal_music> PREFIX ob: <http://dbpedia.org/property/title> select * where{ su: ob: ?Discos_Heavy_metal }
Descripción de Ecuador en todos los idiomas SELECT * WHERE { :Ecuador <http://www.w3.org/2000/01/rdf-schema#comment> ?DescripcionTodosLosIdiomas. }
Palabras que tienen el mismo significado que Sony SELECT ?property ?hasValue ?isValueOf WHERE {   { <http://rdf.freebase.com/ns/guid.9202a8c04000641f8000000000035807> ?property ?hasValue }   UNION   { ?isValueOf ?property <http://rdf.freebase.com/ns/guid.9202a8c04000641f8000000000035807> } }
En que país se encuentra Tungurahua SELECT * WHERE { <http://dbpedia.org/resource/Tungurahua> <http://dbpedia.org/property/location> ?localizacion . } En que país se encuentra Lima SELECT * WHERE { <http://dbpedia.org/resource/Lima> <http://dbpedia.org/property/location> ?localizacion . }
Palabras que tienen el mismo significado que Microsoft SELECT ?property ?hasValue ?isValueOf WHERE {   { <http://rdf.freebase.com/ns/guid.9202a8c04000641f8000000000026344> ?property ?hasValue }   UNION   { ?isValueOf ?property <http://rdf.freebase.com/ns/guid.9202a8c04000641f8000000000026344> } }
Consulta de temas en los que tienen relación con wordnet_type y con label SELECT * WHERE { ?subject dbpedia2:wordnet_type ?predicate. ?subject rdfs:label ?label. }
Consulta de el significado de Oracle select ?hasValue where { <http://dbpedia.org/resource/Oracle> ?property ?hasValue. <http://dbpedia.org/resource/Oracle> rdfs:label ?label. }
Enfermedades y resumen de su significado select * where { ?subject rdfs:comment ?abstract }
Que ciudades del mundo tienen mas de 5 000 000 habitantes SELECT ?subject ?population WHERE { { ?subject rdf:type <http://dbpedia.org/class/yago/City108524735>. ?subject dbpedia2:population ?population. FILTER (xsd:integer(?population) > 5000000) } UNION { ?subject rdf:type <http://dbpedia.org/class/yago/City108524735>. ?subject dbpedia2:populationUrban ?population. FILTER (xsd:integer(?population) > 5000000) } } ORDER BY DESC(xsd:integer(?population))
Monumentos Preromanticos PREFIX rdf:<http://www.w3.org/1999/02/22-rdf-syntax-ns#>  PREFIX rdfs:<http://www.w3.org/2000/01/rdf-schema#>   PREFIX dbpprop:<http://dbpedia.org/property/>  PREFIX dbpedia-owl:<http://dbpedia.org/ontology/>   PREFIX foaf:<http://xmlns.com/foaf/0.1/>    select distinct ?Nombre ?Resumen ?ColeccionFotos ?Web ?Foto where {  ?s rdf:type <http://dbpedia.org/class/yago/BuildingsAndStructuresInAsturias>.   {?s rdfs:label ?Nombre. FILTER langMatches( lang(?Nombre), 'es')}   {?s dbpedia-owl:abstract ?Resumen. FILTER langMatches( lang(?Resumen), 'es')}   ?s dbpprop:hasPhotoCollection ?ColeccionFotos.   ?s foaf:page ?Web.  ?s foaf:depiction ?Foto.   FILTER  regex(?Nombre, "^San")   }
Fecha   de nacimiento y fallecimiento de Nicanor Piñole PREFIX dc:<http://purl.org/dc/elements/1.1/> PREFIX dcterms:<http://purl.org/dc/terms/> PREFIX dctypens:<http://purl.org/dc/dcmitype/> PREFIX rdf:<http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX muvas:<http://muvas.uniovi.es/ProyectoMUVAS/onto/> PREFIX geoname:<http://www.geonames.org/ontology#> PREFIX wgs84_pos:<http://www.w3.org/2003/01/geo/wgs84_pos#> PREFIX foaf:<http://xmlns.com/foaf/0.1/> PREFIX owl:<http://www.w3.org/2002/07/owl#> PREFIX xsd:<http://www.w3.org/2001/XMLSchema#> PREFIX rdfs:<http://www.w3.org/2000/01/rdf-schema#> PREFIX europeana:<http://europeana.eu/terms/> PREFIX ulan:<http://www.getty.edu/vocabularies/ulan#> PREFIX vra:<http://www.vraweb.org/vracore/vracore3#> Select ?idAutor ?Nick ?Nombre ?FechaNacimiento ?FechaFallecimientowhere { ?idAutorfoaf:surname "Piñole" . ?idAutorfoaf:nick ?Nick . ?idAutormuvas:name ?Nombre . ?idAutorulan:birthDate ?FechaNacimiento . ?idAutorulan:deathDate ?FechaFallecimiento . }
Obras de Nicanor Piñole y Epoca a la que pertenecen PREFIX dc:<http://purl.org/dc/elements/1.1/> PREFIX dcterms:<http://purl.org/dc/terms/> PREFIX dctypens:<http://purl.org/dc/dcmitype/> PREFIX rdf:<http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX muvas:<http://muvas.uniovi.es/ProyectoMUVAS/onto/> PREFIX geoname:<http://www.geonames.org/ontology#> PREFIX wgs84_pos:<http://www.w3.org/2003/01/geo/wgs84_pos#> PREFIX foaf:<http://xmlns.com/foaf/0.1/> PREFIX owl:<http://www.w3.org/2002/07/owl#> PREFIX xsd:<http://www.w3.org/2001/XMLSchema#> PREFIX rdfs:<http://www.w3.org/2000/01/rdf-schema#> PREFIX europeana:<http://europeana.eu/terms/> PREFIX ulan:<http://www.getty.edu/vocabularies/ulan#> PREFIX vra:<http://www.vraweb.org/vracore/vracore3#> Select ?idPieza ?NombrePieza ?FechaPieza ?NombreEpocawhere { ?idAutorfoaf:surname "Piñole" . ?idPiezavra:creator ?idAutor . ?idPiezamuvas:museum_piece_historic_period ?epoca . ?epocamuvas:name ?NombreEpoca . ?idPiezamuvas:name ?NombrePieza . ?idPiezavra:date ?FechaPieza . }
Lenguajes de programación conocidos SELECT isValueOf WHERE {   { <http://dbpedia.org/class/yago/ProgrammingLanguage106898352> ?property ?hasValue }   UNION   { ?isValueOf ?property <http://dbpedia.org/class/yago/ProgrammingLanguage106898352> } }
Jugadores Ecuatorianos que jugaron o juegan en equipos Internacionales SELECT ?isValueOf WHERE {   { <http://dbpedia.org/class/yago/EcuadorInternationalFootballers> ?property ?hasValue }   UNION   { ?isValueOf ?property <http://dbpedia.org/class/yago/EcuadorInternationalFootballers> } }
Descripción de el jugador Brasileño Cafu SELECT ?property ?hasValue ?isValueOf WHERE {   { <http://dbpedia.org/resource/Cafu> ?property ?hasValue }   UNION   { ?isValueOf ?property <http://dbpedia.org/resource/Cafu> } }
Canciones de Michael Jackson SELECT ?isValueOf WHERE {   { <http://dbpedia.org/resource/Michael_Jackson> ?property ?hasValue }   UNION   { ?isValueOf ?property <http://dbpedia.org/resource/Michael_Jackson> } }
Descripción de INTEL  en varios idiomas SELECT ?property ?hasValue ?isValueOf WHERE {   { <http://dbpedia.org/resource/Intel_Corporation> ?property ?hasValue }   UNION   { ?isValueOf ?property <http://dbpedia.org/resource/Intel_Corporation> } }
Mujeres futbolistas Mexicanas SELECT ?isValueOf WHERE {   { <http://dbpedia.org/class/yago/MexicanFemaleFootballers> ?property ?hasValue }   UNION   { ?isValueOf ?property <http://dbpedia.org/class/yago/MexicanFemaleFootballers> } }
Series de televisión relacionadas con Batman SELECT ?isValueOf WHERE {   { <http://dbpedia.org/resource/Category:Batman_television_series> ?property ?hasValue }   UNION   { ?isValueOf ?property <http://dbpedia.org/resource/Category:Batman_television_series> } }
Series de televisión de la Warner_Bros SELECT ?property ?hasValue ?isValueOf WHERE {   { <http://dbpedia.org/resource/Category:Television_series_by_Warner_Bros._Television> ?property ?hasValue }   UNION   { ?isValueOf ?property <http://dbpedia.org/resource/Category:Television_series_by_Warner_Bros._Television> } }
Shows de la Warner_Bros SELECT ?isValueOf WHERE {   { <http://dbpedia.org/resource/Category:TBS_network_shows> ?property ?hasValue }   UNION   { ?isValueOf ?property <http://dbpedia.org/resource/Category:TBS_network_shows> } }
Series de televisión del 2008 SELECT ?property ?hasValue ?isValueOf WHERE {   { <http://dbpedia.org/resource/Category:2000s_American_television_series> ?property ?hasValue }   UNION   { ?isValueOf ?property <http://dbpedia.org/resource/Category:2000s_American_television_series> } }
Jugadores de la LDU de Quito SELECT ?isValueOf WHERE {   { <http://dbpedia.org/class/yago/LDUQuitoFootballers> ?property ?hasValue }   UNION   { ?isValueOf ?property <http://dbpedia.org/class/yago/LDUQuitoFootballers> } }
FOX Sports es igual a: SELECT ?property ?hasValue ?isValueOf WHERE {   { <http://rdf.freebase.com/ns/guid.9202a8c04000641f80000000005aae81> ?property ?hasValue }   UNION   { ?isValueOf ?property <http://rdf.freebase.com/ns/guid.9202a8c04000641f80000000005aae81> } }

More Related Content

Viewers also liked

Paper Proyecto de IAA
Paper Proyecto de IAAPaper Proyecto de IAA
Paper Proyecto de IAADiego Guamán
 
Porque despedia mis ecretaria.
Porque despedia mis ecretaria.Porque despedia mis ecretaria.
Porque despedia mis ecretaria.Diego Guamán
 
Proyecto Folding@Home V2
Proyecto Folding@Home V2Proyecto Folding@Home V2
Proyecto Folding@Home V2Diego Guamán
 
Agente Reconedor de Señales de Transito
Agente Reconedor de Señales de TransitoAgente Reconedor de Señales de Transito
Agente Reconedor de Señales de TransitoDiego Guamán
 
Diseño de Ontologías: Protégé OWL - Ejemplo de las Pizzas
Diseño de Ontologías: Protégé OWL - Ejemplo de las PizzasDiseño de Ontologías: Protégé OWL - Ejemplo de las Pizzas
Diseño de Ontologías: Protégé OWL - Ejemplo de las PizzasCarlos Casamayor
 

Viewers also liked (6)

Paper Proyecto de IAA
Paper Proyecto de IAAPaper Proyecto de IAA
Paper Proyecto de IAA
 
Porque despedia mis ecretaria.
Porque despedia mis ecretaria.Porque despedia mis ecretaria.
Porque despedia mis ecretaria.
 
Proyecto Folding@Home V2
Proyecto Folding@Home V2Proyecto Folding@Home V2
Proyecto Folding@Home V2
 
Agente Reconedor de Señales de Transito
Agente Reconedor de Señales de TransitoAgente Reconedor de Señales de Transito
Agente Reconedor de Señales de Transito
 
Lenguaje owl para ontologias
Lenguaje owl para ontologiasLenguaje owl para ontologias
Lenguaje owl para ontologias
 
Diseño de Ontologías: Protégé OWL - Ejemplo de las Pizzas
Diseño de Ontologías: Protégé OWL - Ejemplo de las PizzasDiseño de Ontologías: Protégé OWL - Ejemplo de las Pizzas
Diseño de Ontologías: Protégé OWL - Ejemplo de las Pizzas
 

More from Diego Guamán

Inteligencia artificial avanzada
Inteligencia artificial avanzadaInteligencia artificial avanzada
Inteligencia artificial avanzadaDiego Guamán
 
Ejemplos de representación usando rdf y owl
Ejemplos de representación usando rdf y owlEjemplos de representación usando rdf y owl
Ejemplos de representación usando rdf y owlDiego Guamán
 
Adios De Gabriel Marquez
Adios De Gabriel MarquezAdios De Gabriel Marquez
Adios De Gabriel MarquezDiego Guamán
 

More from Diego Guamán (6)

Inteligencia artificial avanzada
Inteligencia artificial avanzadaInteligencia artificial avanzada
Inteligencia artificial avanzada
 
Ejemplos de representación usando rdf y owl
Ejemplos de representación usando rdf y owlEjemplos de representación usando rdf y owl
Ejemplos de representación usando rdf y owl
 
Open Innovation
Open InnovationOpen Innovation
Open Innovation
 
Capitulo 2
Capitulo 2Capitulo 2
Capitulo 2
 
Adios De Gabriel Marquez
Adios De Gabriel MarquezAdios De Gabriel Marquez
Adios De Gabriel Marquez
 
Palabras
PalabrasPalabras
Palabras
 

Recently uploaded

CALENDARIZACION DE MAYO / RESPONSABILIDAD
CALENDARIZACION DE MAYO / RESPONSABILIDADCALENDARIZACION DE MAYO / RESPONSABILIDAD
CALENDARIZACION DE MAYO / RESPONSABILIDADauxsoporte
 
Manual - ABAS II completo 263 hojas .pdf
Manual - ABAS II completo 263 hojas .pdfManual - ABAS II completo 263 hojas .pdf
Manual - ABAS II completo 263 hojas .pdfMaryRotonda1
 
OLIMPIADA DEL CONOCIMIENTO INFANTIL 2024.pptx
OLIMPIADA DEL CONOCIMIENTO INFANTIL 2024.pptxOLIMPIADA DEL CONOCIMIENTO INFANTIL 2024.pptx
OLIMPIADA DEL CONOCIMIENTO INFANTIL 2024.pptxjosetrinidadchavez
 
Identificación de componentes Hardware del PC
Identificación de componentes Hardware del PCIdentificación de componentes Hardware del PC
Identificación de componentes Hardware del PCCesarFernandez937857
 
30-de-abril-plebiscito-1902_240420_104511.pdf
30-de-abril-plebiscito-1902_240420_104511.pdf30-de-abril-plebiscito-1902_240420_104511.pdf
30-de-abril-plebiscito-1902_240420_104511.pdfgimenanahuel
 
TECNOLOGÍA FARMACEUTICA OPERACIONES UNITARIAS.pptx
TECNOLOGÍA FARMACEUTICA OPERACIONES UNITARIAS.pptxTECNOLOGÍA FARMACEUTICA OPERACIONES UNITARIAS.pptx
TECNOLOGÍA FARMACEUTICA OPERACIONES UNITARIAS.pptxKarlaMassielMartinez
 
Historia y técnica del collage en el arte
Historia y técnica del collage en el arteHistoria y técnica del collage en el arte
Historia y técnica del collage en el arteRaquel Martín Contreras
 
Neurociencias para Educadores NE24 Ccesa007.pdf
Neurociencias para Educadores  NE24  Ccesa007.pdfNeurociencias para Educadores  NE24  Ccesa007.pdf
Neurociencias para Educadores NE24 Ccesa007.pdfDemetrio Ccesa Rayme
 
SELECCIÓN DE LA MUESTRA Y MUESTREO EN INVESTIGACIÓN CUALITATIVA.pdf
SELECCIÓN DE LA MUESTRA Y MUESTREO EN INVESTIGACIÓN CUALITATIVA.pdfSELECCIÓN DE LA MUESTRA Y MUESTREO EN INVESTIGACIÓN CUALITATIVA.pdf
SELECCIÓN DE LA MUESTRA Y MUESTREO EN INVESTIGACIÓN CUALITATIVA.pdfAngélica Soledad Vega Ramírez
 
MAYO 1 PROYECTO día de la madre el amor más grande
MAYO 1 PROYECTO día de la madre el amor más grandeMAYO 1 PROYECTO día de la madre el amor más grande
MAYO 1 PROYECTO día de la madre el amor más grandeMarjorie Burga
 
Lecciones 04 Esc. Sabática. Defendamos la verdad
Lecciones 04 Esc. Sabática. Defendamos la verdadLecciones 04 Esc. Sabática. Defendamos la verdad
Lecciones 04 Esc. Sabática. Defendamos la verdadAlejandrino Halire Ccahuana
 
2024 - Expo Visibles - Visibilidad Lesbica.pdf
2024 - Expo Visibles - Visibilidad Lesbica.pdf2024 - Expo Visibles - Visibilidad Lesbica.pdf
2024 - Expo Visibles - Visibilidad Lesbica.pdfBaker Publishing Company
 
celula, tipos, teoria celular, energia y dinamica
celula, tipos, teoria celular, energia y dinamicacelula, tipos, teoria celular, energia y dinamica
celula, tipos, teoria celular, energia y dinamicaFlor Idalia Espinoza Ortega
 
UNIDAD DPCC. 2DO. DE SECUNDARIA DEL 2024
UNIDAD DPCC. 2DO. DE  SECUNDARIA DEL 2024UNIDAD DPCC. 2DO. DE  SECUNDARIA DEL 2024
UNIDAD DPCC. 2DO. DE SECUNDARIA DEL 2024AndreRiva2
 
Informatica Generalidades - Conceptos Básicos
Informatica Generalidades - Conceptos BásicosInformatica Generalidades - Conceptos Básicos
Informatica Generalidades - Conceptos BásicosCesarFernandez937857
 
Caja de herramientas de inteligencia artificial para la academia y la investi...
Caja de herramientas de inteligencia artificial para la academia y la investi...Caja de herramientas de inteligencia artificial para la academia y la investi...
Caja de herramientas de inteligencia artificial para la academia y la investi...Lourdes Feria
 
Planificacion Anual 2do Grado Educacion Primaria 2024 Ccesa007.pdf
Planificacion Anual 2do Grado Educacion Primaria   2024   Ccesa007.pdfPlanificacion Anual 2do Grado Educacion Primaria   2024   Ccesa007.pdf
Planificacion Anual 2do Grado Educacion Primaria 2024 Ccesa007.pdfDemetrio Ccesa Rayme
 
Heinsohn Privacidad y Ciberseguridad para el sector educativo
Heinsohn Privacidad y Ciberseguridad para el sector educativoHeinsohn Privacidad y Ciberseguridad para el sector educativo
Heinsohn Privacidad y Ciberseguridad para el sector educativoFundación YOD YOD
 
EXPANSIÓN ECONÓMICA DE OCCIDENTE LEÓN.pptx
EXPANSIÓN ECONÓMICA DE OCCIDENTE LEÓN.pptxEXPANSIÓN ECONÓMICA DE OCCIDENTE LEÓN.pptx
EXPANSIÓN ECONÓMICA DE OCCIDENTE LEÓN.pptxPryhaSalam
 

Recently uploaded (20)

CALENDARIZACION DE MAYO / RESPONSABILIDAD
CALENDARIZACION DE MAYO / RESPONSABILIDADCALENDARIZACION DE MAYO / RESPONSABILIDAD
CALENDARIZACION DE MAYO / RESPONSABILIDAD
 
Manual - ABAS II completo 263 hojas .pdf
Manual - ABAS II completo 263 hojas .pdfManual - ABAS II completo 263 hojas .pdf
Manual - ABAS II completo 263 hojas .pdf
 
OLIMPIADA DEL CONOCIMIENTO INFANTIL 2024.pptx
OLIMPIADA DEL CONOCIMIENTO INFANTIL 2024.pptxOLIMPIADA DEL CONOCIMIENTO INFANTIL 2024.pptx
OLIMPIADA DEL CONOCIMIENTO INFANTIL 2024.pptx
 
Identificación de componentes Hardware del PC
Identificación de componentes Hardware del PCIdentificación de componentes Hardware del PC
Identificación de componentes Hardware del PC
 
30-de-abril-plebiscito-1902_240420_104511.pdf
30-de-abril-plebiscito-1902_240420_104511.pdf30-de-abril-plebiscito-1902_240420_104511.pdf
30-de-abril-plebiscito-1902_240420_104511.pdf
 
TECNOLOGÍA FARMACEUTICA OPERACIONES UNITARIAS.pptx
TECNOLOGÍA FARMACEUTICA OPERACIONES UNITARIAS.pptxTECNOLOGÍA FARMACEUTICA OPERACIONES UNITARIAS.pptx
TECNOLOGÍA FARMACEUTICA OPERACIONES UNITARIAS.pptx
 
Historia y técnica del collage en el arte
Historia y técnica del collage en el arteHistoria y técnica del collage en el arte
Historia y técnica del collage en el arte
 
Neurociencias para Educadores NE24 Ccesa007.pdf
Neurociencias para Educadores  NE24  Ccesa007.pdfNeurociencias para Educadores  NE24  Ccesa007.pdf
Neurociencias para Educadores NE24 Ccesa007.pdf
 
SELECCIÓN DE LA MUESTRA Y MUESTREO EN INVESTIGACIÓN CUALITATIVA.pdf
SELECCIÓN DE LA MUESTRA Y MUESTREO EN INVESTIGACIÓN CUALITATIVA.pdfSELECCIÓN DE LA MUESTRA Y MUESTREO EN INVESTIGACIÓN CUALITATIVA.pdf
SELECCIÓN DE LA MUESTRA Y MUESTREO EN INVESTIGACIÓN CUALITATIVA.pdf
 
Unidad 3 | Metodología de la Investigación
Unidad 3 | Metodología de la InvestigaciónUnidad 3 | Metodología de la Investigación
Unidad 3 | Metodología de la Investigación
 
MAYO 1 PROYECTO día de la madre el amor más grande
MAYO 1 PROYECTO día de la madre el amor más grandeMAYO 1 PROYECTO día de la madre el amor más grande
MAYO 1 PROYECTO día de la madre el amor más grande
 
Lecciones 04 Esc. Sabática. Defendamos la verdad
Lecciones 04 Esc. Sabática. Defendamos la verdadLecciones 04 Esc. Sabática. Defendamos la verdad
Lecciones 04 Esc. Sabática. Defendamos la verdad
 
2024 - Expo Visibles - Visibilidad Lesbica.pdf
2024 - Expo Visibles - Visibilidad Lesbica.pdf2024 - Expo Visibles - Visibilidad Lesbica.pdf
2024 - Expo Visibles - Visibilidad Lesbica.pdf
 
celula, tipos, teoria celular, energia y dinamica
celula, tipos, teoria celular, energia y dinamicacelula, tipos, teoria celular, energia y dinamica
celula, tipos, teoria celular, energia y dinamica
 
UNIDAD DPCC. 2DO. DE SECUNDARIA DEL 2024
UNIDAD DPCC. 2DO. DE  SECUNDARIA DEL 2024UNIDAD DPCC. 2DO. DE  SECUNDARIA DEL 2024
UNIDAD DPCC. 2DO. DE SECUNDARIA DEL 2024
 
Informatica Generalidades - Conceptos Básicos
Informatica Generalidades - Conceptos BásicosInformatica Generalidades - Conceptos Básicos
Informatica Generalidades - Conceptos Básicos
 
Caja de herramientas de inteligencia artificial para la academia y la investi...
Caja de herramientas de inteligencia artificial para la academia y la investi...Caja de herramientas de inteligencia artificial para la academia y la investi...
Caja de herramientas de inteligencia artificial para la academia y la investi...
 
Planificacion Anual 2do Grado Educacion Primaria 2024 Ccesa007.pdf
Planificacion Anual 2do Grado Educacion Primaria   2024   Ccesa007.pdfPlanificacion Anual 2do Grado Educacion Primaria   2024   Ccesa007.pdf
Planificacion Anual 2do Grado Educacion Primaria 2024 Ccesa007.pdf
 
Heinsohn Privacidad y Ciberseguridad para el sector educativo
Heinsohn Privacidad y Ciberseguridad para el sector educativoHeinsohn Privacidad y Ciberseguridad para el sector educativo
Heinsohn Privacidad y Ciberseguridad para el sector educativo
 
EXPANSIÓN ECONÓMICA DE OCCIDENTE LEÓN.pptx
EXPANSIÓN ECONÓMICA DE OCCIDENTE LEÓN.pptxEXPANSIÓN ECONÓMICA DE OCCIDENTE LEÓN.pptx
EXPANSIÓN ECONÓMICA DE OCCIDENTE LEÓN.pptx
 

Taller sbc

  • 1. Diego E. Guamán E. Consultas en sparql
  • 2. Obras de Vivaldi PREFIX su: <http://dbpedia.org/resource/Antonio_Vivaldi> PREFIX ob: <http://dbpedia.org/property/title> select * where{ su: ob: ?obrasVivaldi }
  • 3. Discos de Heavy Metal PREFIX su: <http://dbpedia.org/resource/Heavy_metal_music> PREFIX ob: <http://dbpedia.org/property/title> select * where{ su: ob: ?Discos_Heavy_metal }
  • 4. Descripción de Ecuador en todos los idiomas SELECT * WHERE { :Ecuador <http://www.w3.org/2000/01/rdf-schema#comment> ?DescripcionTodosLosIdiomas. }
  • 5. Palabras que tienen el mismo significado que Sony SELECT ?property ?hasValue ?isValueOf WHERE { { <http://rdf.freebase.com/ns/guid.9202a8c04000641f8000000000035807> ?property ?hasValue } UNION { ?isValueOf ?property <http://rdf.freebase.com/ns/guid.9202a8c04000641f8000000000035807> } }
  • 6. En que país se encuentra Tungurahua SELECT * WHERE { <http://dbpedia.org/resource/Tungurahua> <http://dbpedia.org/property/location> ?localizacion . } En que país se encuentra Lima SELECT * WHERE { <http://dbpedia.org/resource/Lima> <http://dbpedia.org/property/location> ?localizacion . }
  • 7. Palabras que tienen el mismo significado que Microsoft SELECT ?property ?hasValue ?isValueOf WHERE { { <http://rdf.freebase.com/ns/guid.9202a8c04000641f8000000000026344> ?property ?hasValue } UNION { ?isValueOf ?property <http://rdf.freebase.com/ns/guid.9202a8c04000641f8000000000026344> } }
  • 8. Consulta de temas en los que tienen relación con wordnet_type y con label SELECT * WHERE { ?subject dbpedia2:wordnet_type ?predicate. ?subject rdfs:label ?label. }
  • 9. Consulta de el significado de Oracle select ?hasValue where { <http://dbpedia.org/resource/Oracle> ?property ?hasValue. <http://dbpedia.org/resource/Oracle> rdfs:label ?label. }
  • 10. Enfermedades y resumen de su significado select * where { ?subject rdfs:comment ?abstract }
  • 11. Que ciudades del mundo tienen mas de 5 000 000 habitantes SELECT ?subject ?population WHERE { { ?subject rdf:type <http://dbpedia.org/class/yago/City108524735>. ?subject dbpedia2:population ?population. FILTER (xsd:integer(?population) > 5000000) } UNION { ?subject rdf:type <http://dbpedia.org/class/yago/City108524735>. ?subject dbpedia2:populationUrban ?population. FILTER (xsd:integer(?population) > 5000000) } } ORDER BY DESC(xsd:integer(?population))
  • 12. Monumentos Preromanticos PREFIX rdf:<http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX rdfs:<http://www.w3.org/2000/01/rdf-schema#> PREFIX dbpprop:<http://dbpedia.org/property/> PREFIX dbpedia-owl:<http://dbpedia.org/ontology/> PREFIX foaf:<http://xmlns.com/foaf/0.1/> select distinct ?Nombre ?Resumen ?ColeccionFotos ?Web ?Foto where { ?s rdf:type <http://dbpedia.org/class/yago/BuildingsAndStructuresInAsturias>. {?s rdfs:label ?Nombre. FILTER langMatches( lang(?Nombre), 'es')} {?s dbpedia-owl:abstract ?Resumen. FILTER langMatches( lang(?Resumen), 'es')} ?s dbpprop:hasPhotoCollection ?ColeccionFotos. ?s foaf:page ?Web. ?s foaf:depiction ?Foto. FILTER regex(?Nombre, "^San") }
  • 13. Fecha de nacimiento y fallecimiento de Nicanor Piñole PREFIX dc:<http://purl.org/dc/elements/1.1/> PREFIX dcterms:<http://purl.org/dc/terms/> PREFIX dctypens:<http://purl.org/dc/dcmitype/> PREFIX rdf:<http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX muvas:<http://muvas.uniovi.es/ProyectoMUVAS/onto/> PREFIX geoname:<http://www.geonames.org/ontology#> PREFIX wgs84_pos:<http://www.w3.org/2003/01/geo/wgs84_pos#> PREFIX foaf:<http://xmlns.com/foaf/0.1/> PREFIX owl:<http://www.w3.org/2002/07/owl#> PREFIX xsd:<http://www.w3.org/2001/XMLSchema#> PREFIX rdfs:<http://www.w3.org/2000/01/rdf-schema#> PREFIX europeana:<http://europeana.eu/terms/> PREFIX ulan:<http://www.getty.edu/vocabularies/ulan#> PREFIX vra:<http://www.vraweb.org/vracore/vracore3#> Select ?idAutor ?Nick ?Nombre ?FechaNacimiento ?FechaFallecimientowhere { ?idAutorfoaf:surname "Piñole" . ?idAutorfoaf:nick ?Nick . ?idAutormuvas:name ?Nombre . ?idAutorulan:birthDate ?FechaNacimiento . ?idAutorulan:deathDate ?FechaFallecimiento . }
  • 14. Obras de Nicanor Piñole y Epoca a la que pertenecen PREFIX dc:<http://purl.org/dc/elements/1.1/> PREFIX dcterms:<http://purl.org/dc/terms/> PREFIX dctypens:<http://purl.org/dc/dcmitype/> PREFIX rdf:<http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX muvas:<http://muvas.uniovi.es/ProyectoMUVAS/onto/> PREFIX geoname:<http://www.geonames.org/ontology#> PREFIX wgs84_pos:<http://www.w3.org/2003/01/geo/wgs84_pos#> PREFIX foaf:<http://xmlns.com/foaf/0.1/> PREFIX owl:<http://www.w3.org/2002/07/owl#> PREFIX xsd:<http://www.w3.org/2001/XMLSchema#> PREFIX rdfs:<http://www.w3.org/2000/01/rdf-schema#> PREFIX europeana:<http://europeana.eu/terms/> PREFIX ulan:<http://www.getty.edu/vocabularies/ulan#> PREFIX vra:<http://www.vraweb.org/vracore/vracore3#> Select ?idPieza ?NombrePieza ?FechaPieza ?NombreEpocawhere { ?idAutorfoaf:surname "Piñole" . ?idPiezavra:creator ?idAutor . ?idPiezamuvas:museum_piece_historic_period ?epoca . ?epocamuvas:name ?NombreEpoca . ?idPiezamuvas:name ?NombrePieza . ?idPiezavra:date ?FechaPieza . }
  • 15. Lenguajes de programación conocidos SELECT isValueOf WHERE { { <http://dbpedia.org/class/yago/ProgrammingLanguage106898352> ?property ?hasValue } UNION { ?isValueOf ?property <http://dbpedia.org/class/yago/ProgrammingLanguage106898352> } }
  • 16. Jugadores Ecuatorianos que jugaron o juegan en equipos Internacionales SELECT ?isValueOf WHERE { { <http://dbpedia.org/class/yago/EcuadorInternationalFootballers> ?property ?hasValue } UNION { ?isValueOf ?property <http://dbpedia.org/class/yago/EcuadorInternationalFootballers> } }
  • 17. Descripción de el jugador Brasileño Cafu SELECT ?property ?hasValue ?isValueOf WHERE { { <http://dbpedia.org/resource/Cafu> ?property ?hasValue } UNION { ?isValueOf ?property <http://dbpedia.org/resource/Cafu> } }
  • 18. Canciones de Michael Jackson SELECT ?isValueOf WHERE { { <http://dbpedia.org/resource/Michael_Jackson> ?property ?hasValue } UNION { ?isValueOf ?property <http://dbpedia.org/resource/Michael_Jackson> } }
  • 19. Descripción de INTEL en varios idiomas SELECT ?property ?hasValue ?isValueOf WHERE { { <http://dbpedia.org/resource/Intel_Corporation> ?property ?hasValue } UNION { ?isValueOf ?property <http://dbpedia.org/resource/Intel_Corporation> } }
  • 20. Mujeres futbolistas Mexicanas SELECT ?isValueOf WHERE { { <http://dbpedia.org/class/yago/MexicanFemaleFootballers> ?property ?hasValue } UNION { ?isValueOf ?property <http://dbpedia.org/class/yago/MexicanFemaleFootballers> } }
  • 21. Series de televisión relacionadas con Batman SELECT ?isValueOf WHERE { { <http://dbpedia.org/resource/Category:Batman_television_series> ?property ?hasValue } UNION { ?isValueOf ?property <http://dbpedia.org/resource/Category:Batman_television_series> } }
  • 22. Series de televisión de la Warner_Bros SELECT ?property ?hasValue ?isValueOf WHERE { { <http://dbpedia.org/resource/Category:Television_series_by_Warner_Bros._Television> ?property ?hasValue } UNION { ?isValueOf ?property <http://dbpedia.org/resource/Category:Television_series_by_Warner_Bros._Television> } }
  • 23. Shows de la Warner_Bros SELECT ?isValueOf WHERE { { <http://dbpedia.org/resource/Category:TBS_network_shows> ?property ?hasValue } UNION { ?isValueOf ?property <http://dbpedia.org/resource/Category:TBS_network_shows> } }
  • 24. Series de televisión del 2008 SELECT ?property ?hasValue ?isValueOf WHERE { { <http://dbpedia.org/resource/Category:2000s_American_television_series> ?property ?hasValue } UNION { ?isValueOf ?property <http://dbpedia.org/resource/Category:2000s_American_television_series> } }
  • 25. Jugadores de la LDU de Quito SELECT ?isValueOf WHERE { { <http://dbpedia.org/class/yago/LDUQuitoFootballers> ?property ?hasValue } UNION { ?isValueOf ?property <http://dbpedia.org/class/yago/LDUQuitoFootballers> } }
  • 26. FOX Sports es igual a: SELECT ?property ?hasValue ?isValueOf WHERE { { <http://rdf.freebase.com/ns/guid.9202a8c04000641f80000000005aae81> ?property ?hasValue } UNION { ?isValueOf ?property <http://rdf.freebase.com/ns/guid.9202a8c04000641f80000000005aae81> } }