fix style

pull/7248/head
naisila 2023-10-06 12:56:31 +03:00
parent 68bfa56013
commit c30d01f388
No known key found for this signature in database
GPG Key ID: A824BA9862D73E6D
1 changed files with 1 additions and 1 deletions

View File

@ -447,7 +447,7 @@ WHERE orders_table.user_id = distinct_user_id;
#### Subquery in Target List
```sql
-- retrieves the most recent order date for each user
-- retrieves the most recent order date for each user
SELECT (SELECT MAX(order_date) FROM orders_table o WHERE o.user_id = u.user_id) FROM users_table u;
```