Executes the query and returns the matching rows from the table.
(self)
| 1277 | sql = SQL |
| 1278 | |
| 1279 | def execute(self): |
| 1280 | """ Executes the query and returns the matching rows from the table. |
| 1281 | """ |
| 1282 | return self._table.db.execute(self.SQL()) |
| 1283 | |
| 1284 | def rows(self): |
| 1285 | """ Executes the query and returns the matching rows from the table. |
no test coverage detected