question 6 you are working with a database table that contains data about music. the table includes columns for track id, track name (name of the music track), composer, and bytes (digital storage size of the music track). you are only interested in data about the classical musician johann sebastian bach. you want to know the size of each bach track in kilobytes. you decide to divide bytes by 1000 to get the size in kilobytes, and use the as command to store the result in a new column called kilobytes. add a statement to your sql query that calculates the size in kilobytes for each track and stores it in a new column as kilobytes.