diff --git a/databases.qmd b/databases.qmd index 8c9c341..d1d2386 100644 --- a/databases.qmd +++ b/databases.qmd @@ -211,7 +211,7 @@ big_diamonds_db You can tell this object represents a database query because it prints the DBMS name at the top, and while it tells you the number of columns, it typically doesn't know the number of rows. This is because finding the total number of rows usually requires executing the complete query, something we're trying to avoid. -You can see the SQL code generated by the dbplyr function `show_query()`. +You can see the SQL code generated by the dplyr function `show_query()`. If you know dplyr, this is a great way to learn SQL! Write some dplyr code, get dbplyr to translate it to SQL, and then try to figure out how the two languages match up.