What is the size in kilobytes of the track with Id number 3407?

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.

NOTE: The three dots (…) indicate where to add the statement.

SELECT
track_id,
track_name,
composer,
bytes,
. . .
FROM
track
WHERE
composer = "Johann Sebastian Bach"
Correct
You add the statement bytes / 1000 AS kilobytes to calculate the size in kilobytes for each track and store it in a new column as kilobytes. The complete query is SELECT track_id, track_name, composer, bytes, bytes / 1000 AS kilobytes FROM track WHERE composer = “Johann Sebastian Bach”. The AS command gives a temporary name to the new column.

The size of the track with Id number 3407 is 3192 kilobytes.