Get the SQL statement
(self, builder: DbBackend)
| 783 | |
| 784 | /// Get the SQL statement |
| 785 | pub fn into_statement(self, builder: DbBackend) -> Statement { |
| 786 | builder.build(&self.query) |
| 787 | } |
| 788 | |
| 789 | /// Get an item from the Select query |
| 790 | pub async fn one<C>(mut self, db: &C) -> Result<Option<S::Item>, DbErr> |