Загрузил скрипты лаб 1-7
This commit is contained in:
9
Lab4/Task3.sql
Normal file
9
Lab4/Task3.sql
Normal 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;
|
||||
Reference in New Issue
Block a user