-- Splitting out the authors column based on the author_url column ALTER TABLE PortfolioProject.dbo.Goodreads ADD author NVARCHAR(255); UPDATE PortfolioProject.dbo.Goodreads SET author = REPLACE(PARSENAME(REPLACE(author_url, ',', '.'), 1), '_', ' ');
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter