You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SELECT product_id, style, model_name, color, count(*) as total_purchases
You split up the columns being SELECTed onto their own lines in some places, but not in others, and it would help improve readability if you did so consistently, as this would help prevent overly long lines. For example, the above SELECT statement could be broken up like so:
SELECT product_id,
style,
model_name,
color,
COUNT(*) AS total_purchases
The text was updated successfully, but these errors were encountered:
sql-scratch-capstone-turn-in/Capstone VBroly/code.sql
Line 121 in 250b89b
You split up the columns being SELECTed onto their own lines in some places, but not in others, and it would help improve readability if you did so consistently, as this would help prevent overly long lines. For example, the above SELECT statement could be broken up like so:
The text was updated successfully, but these errors were encountered: