Executes a SELECT query and returns the matching rows.
SELECT
Future<List<Map<String, dynamic>>> get() async { final result = await _executor.query(_buildSelect(), _snapshotParams()); return result.rows; }