This query will not return any results. The pattern specified in the WHERE clause contains two triples, but the second triple contains a syntax error - it is missing the property between ?x and ?ema. A valid property like email would need to be specified, such as:
SELECT ?name WHERE {
?x name ?name .
?x email ?email
}
This query will select and return the ?name of any resources ?x that have both a name and email property specified.