I have a data table called Movie_Stars. I want to update multiple values, but they are all in the same column. Here's what I have:
update movie_stars
set movie_category = 'Family'
where movie_category = 'Drama'
and set movie_category = 'Children'
where movie_category = 'Cartoon'
and set movie_category = 'Teen'
where movie_category = 'Action';
But this generates the error "invalid user.table.column, table.column, or column specification". So what is the right column specification?