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?
| SitePoint Sponsor |



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!!![]()
Bookmarks