Skip to content

Commit 6d15330

Browse files
committed
added database sql script
1 parent be4c124 commit 6d15330

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

database/script.sql

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
/****** Object: Table [dbo].[department] Script Date: 2/5/2023 3:31:06 AM ******/
2+
SET ANSI_NULLS ON
3+
GO
4+
SET QUOTED_IDENTIFIER ON
5+
GO
6+
CREATE TABLE [dbo].[department](
7+
[id] [int] NULL,
8+
[department_name] [nchar](100) NULL
9+
) ON [PRIMARY]
10+
GO
11+
12+
13+
/****** Object: Table [dbo].[Student] Script Date: 2/5/2023 3:31:06 AM ******/
14+
SET ANSI_NULLS ON
15+
GO
16+
SET QUOTED_IDENTIFIER ON
17+
GO
18+
CREATE TABLE [dbo].[Student](
19+
[id] [int] IDENTITY(1,1) NOT NULL,
20+
[student_name] [varchar](100) NULL,
21+
[department] [varchar](100) NULL
22+
) ON [PRIMARY]
23+
GO
24+
USE [master]
25+
GO

0 commit comments

Comments
 (0)