You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mssql_Study/insert multi tuples.sql

13 lines
172 B

USE Study
GO
CREATE TABLE DEPT01(
DNO INT,
DNAME VARCHAR(20),
ADDRESS VARCHAR(20),
)
INSERT INTO DEPT01
VALUES
(200, 'dept001', 'seoul'),
(201, 'dept002', 'incheon')