Cleaning up the Genres column

PHOTO EMBED

Tue May 21 2024 08:00:58 GMT+0000 (Coordinated Universal Time)

Saved by @Uncoverit #sql

-- Cleaning up the Genres column
UPDATE PortfolioProject.dbo.Goodreads
SET genres = REPLACE(REPLACE(REPLACE(genres, '/genres/', ''), '-', ' '), '|', ' | ');
content_copyCOPY