From Facebook Query Language (FQL) - Facebook Developers
Queries are of the form SELECT [fields] FROM [table] WHERE [conditions]. Unlike SQL, the FQL FROM clause can contain only a single table. You can use the IN keyword in SELECT or WHERE clauses to do subqueries, but the subqueries cannot reference variables in the outer query's scope. Your query must also be indexable, meaning that it queries properties that are marked as indexable in the documentation below.
ie all FQL queries require at least one indexable column in the WHERE clause.
And, as you can see from the FQL event table page the only indexable property is eid.