Question: Write a SQL statement to change the first_name for a recent entry in the people table from George White to Martha. ADD TO people SET
Write a SQL statement to change the first_name for a recent entry in the people table from George White to Martha.\ ADD TO people\ SET first_name='Martha'\ WHERE first_name='George' AND last_name='White';\ UPDATE people
x\ SET first_name=' Martha'\ WHERE first_name='George' AND last_name='White';\ ADD people\ SET first_name
=' Martha'\ WHERE first_name='George' AND last_name='White';\ UPDATE AS people\ SET first_name='Martha'

Write a SQL statement to change the first_name for a recent entry in the people table from George White to Martha. ADD TO people SET first_name='Martha' WHERE first_name='George' AND last_name='White'; UPDATE people X SET first_name='Martha' WHERE first_name='George' AND last_name='White'; ADD people SET first_name='Martha' WHERE first_name='George' AND last_name='White'; UPDATE AS people
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
