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 test table.sql

13 lines
160 B

USE STUDY
GO
CREATE TABLE EMPTEST(
ENO INT,
ENAME NVARCHAR(20),
JOB NVARCHAR(20),
MANAGER INT,
HIREDATE DATETIME,
SALARY INT,
COMMISSION INT,
DNO INT
)