Загрузил скрипты лаб 1-7

This commit is contained in:
2022-10-26 00:38:28 +03:00
commit 38c08028f1
56 changed files with 1380 additions and 0 deletions

9
Lab4/Task3.sql Normal file
View File

@@ -0,0 +1,9 @@
USE library
CREATE TABLE sample1
(
Cust_id int NOT NULL IDENTITY(100, 5),
Name char(10) NULL
);
INSERT INTO sample1 DEFAULT VALUES;
SELECT * FROM sample1;