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.
13 lines
172 B
13 lines
172 B
3 years ago
|
USE Study
|
||
|
GO
|
||
|
|
||
|
CREATE TABLE DEPT01(
|
||
|
DNO INT,
|
||
|
DNAME VARCHAR(20),
|
||
|
ADDRESS VARCHAR(20),
|
||
|
)
|
||
|
|
||
|
INSERT INTO DEPT01
|
||
|
VALUES
|
||
|
(200, 'dept001', 'seoul'),
|
||
|
(201, 'dept002', 'incheon')
|