Created
June 12, 2021 21:35
-
-
Save bartubozkurt/6fa9b2e60634c66f82b0d8ce2c1f8272 to your computer and use it in GitHub Desktop.
Example would delete the first 3 records from the employees table where the last_name is 'Johnson'.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| DELETE TOP (3) FROM Customers WHERE last_name = ‘Johnson’; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment