google-developer-training / android-basics-kotlin-sql-basics-app

Fundamentals of relational databases and practice running SQL queries with Database Inspector in Android Studio.
Apache License 2.0
62 stars 127 forks source link

Group By Example Code and Image Mismatch #49

Closed cjparent closed 9 months ago

cjparent commented 1 year ago

URL of codelab https://developer.android.com/codelabs/basic-android-kotlin-compose-sql?continue=https%3A%2F%2Fdeveloper.android.com%2Fcourses%2Fpathways%2Fandroid-basics-compose-unit-6-pathway-1%23codelab-https%3A%2F%2Fdeveloper.android.com%2Fcodelabs%2Fbasic-android-kotlin-compose-sql#6

In which task and step of the codelab can this issue be found? Step 7: Group, order, and limit results

Describe the problem For the first example, the query shown in the code snippet does not match the image

The code snippet is SELECT * FROM email GROUP BY folder;

The Image shows a query of

SELECT folder, COUNT(*) FROM email GROUP BY folder;

Additional information Include screenshots if they would be useful in clarifying the problem.

group_order_and_limit_results_error