We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be4c124 commit 6d15330Copy full SHA for 6d15330
database/script.sql
@@ -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
6
+CREATE TABLE [dbo].[department](
7
+ [id] [int] NULL,
8
+ [department_name] [nchar](100) NULL
9
+) ON [PRIMARY]
10
11
+
12
13
+/****** Object: Table [dbo].[Student] Script Date: 2/5/2023 3:31:06 AM ******/
14
15
16
17
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
23
24
+USE [master]
25
0 commit comments