Skip to content

Commit 33e2191

Browse files
authored
Update and rename intro_sqlalchemy.md to sqlalchemy_aggregation.md
1 parent d2e7030 commit 33e2191

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contrib/database/intro_sqlalchemy.md renamed to contrib/database/sqlalchemy_aggregation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,4 +102,4 @@ min_price = session.query(func.min(Product.price)).scalar()
102102
print(f'Minimum price of products: {min_price}')
103103
```
104104

105-
In general, the aggregation functions can be implemented by utilising the **session** object to execute the desired query on the table present in a database using the **query()** method. The **scalar()** method is called on the query object to execute the query and return a single value
105+
In general, the aggregation functions can be implemented by utilising the **session** object to execute the desired query on the table present in a database using the **query()** method. The **scalar()** method is called on the query object to execute the query and return a single value

0 commit comments

Comments
 (0)