Skip to content

Instantly share code, notes, and snippets.

@machinelearningplus
Created September 19, 2023 11:10
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 machinelearningplus/51e17fdf18167a572c98a6564fd4b4e2 to your computer and use it in GitHub Desktop.
Save machinelearningplus/51e17fdf18167a572c98a6564fd4b4e2 to your computer and use it in GitHub Desktop.
-- SQL Server
CREATE TABLE ExampleTable (
ID INT PRIMARY KEY,
Name NVARCHAR(50)
);
INSERT INTO ExampleTable (ID, Name)
VALUES
(1, 'John''s Pizza'),
(2, 'Mary''s Cafe'),
(3, 'Alice''s Diner');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment