feat(sheets): QUERY() function for SQL-like data queries (#85)
Add QUERY(data, query, [headers]) with support for:
- SELECT (specific columns or *)
- WHERE (comparison operators: >, <, >=, <=, =, !=, <>)
- ORDER BY (ASC/DESC)
- LIMIT
Column references use Col1, Col2, etc. Query module is standalone
with 30 unit tests covering parsing, comparison, and execution.