Skip to content

Instantly share code, notes, and snippets.

@ayoubbensakhria
Created October 18, 2021 15:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ayoubbensakhria/59bfd1c4cf72231e4d250f55a1800d0b to your computer and use it in GitHub Desktop.
Save ayoubbensakhria/59bfd1c4cf72231e4d250f55a1800d0b to your computer and use it in GitHub Desktop.
SQL Server Update Null Values
UPDATE [dbo].[parameters]
SET
[price] = 0
WHERE
[price] IS NULL;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment