Final answer:
The names of the columns in a SQL table must be listed in the VALUES clause when data is only being added to some of the columns.
Step-by-step explanation:
The statement is true. In SQL, when adding data to a table, you use the INSERT INTO statement followed by the table name and the VALUES clause to specify the data to be added. If data is only being added to some of the columns in the table, you must list the names of those columns in the VALUES clause along with the corresponding values.