SQL statement to change column value

I have a table with 400 records. What is example SQL statement to change column “cars” to value of “1” for all records in the table?

“UPDATE car_table SET cars = 1”;

UPDATE car_table SET cars = 1

big difference!! :slight_smile: