machinalis / quepy

A python framework to transform natural language questions to queries in a database query language.
Other
1.25k stars 296 forks source link

Como agregar mas variables en el query? / How to Add more variables on query ? #47

Open jesushd12 opened 7 years ago

jesushd12 commented 7 years ago

Hola, Todos los ejemplos tienen la siguiente sintaxis SELECT DISTINCT {select} .... por ejemplo: SELECT DISTINCT ?x1 WHERE { ?x0 rdf:type foaf:Person. ?x0 rdfs:label "Tom Cruise"@en. ?x0 rdfs:comment ?x1. }

Mi pregunta es, si es posible agregar mas variables en el SELECT por ejemplo: SELECT DISTINCT ?x0 ?x1 WHERE { ?x0 rdf:type foaf:Person. ?x0 rdfs:label "Tom Cruise"@en. ?x0 rdfs:comment ?x1. }

Saludos