mirror of
https://github.com/Microsoft/sql-server-samples.git
synced 2025-12-08 14:58:54 +00:00
ReactJS app is moved to reactjs/dotnet-comment-app. Removed project.lock.json file from source control.
14 lines
264 B
Transact-SQL
14 lines
264 B
Transact-SQL
DROP TABLE IF EXISTS Comments
|
|
GO
|
|
|
|
CREATE TABLE Comments (
|
|
id int IDENTITY PRIMARY KEY,
|
|
author nvarchar(30) NOT NULL,
|
|
text nvarchar(4000)
|
|
)
|
|
GO
|
|
|
|
INSERT INTO Comments (author, text)
|
|
VALUES
|
|
('John','This is great!'),
|
|
('Jane','I like the fact that it is simple.') |