MOCKSTACKS
EN
Questions And Answers

More Tutorials









SQLServer Example Databases and Tables

Auto Shop Database


In the following example - Database for an auto shop business, we have a list of departments, employees, customers and customer cars. We are using foreign keys to create relationships between the various tables.

Relationships between tables


.Each Department may have 0 or more Employees

.Each Employee may have 0 or 1 Manager

.Each Customer may have 0 or more Cars

Departments


Id Name

1 HR

2 Sales

3 Tech


SQL statements to create the table:

CREATE TABLE Departments (
 Id INT NOT NULL AUTO_INCREMENT,
 Name VARCHAR(25) NOT NULL,
 PRIMARY KEY(Id)
);
INSERT INTO Departments
 ([Id], [Name])
VALUES
 (1, 'HR'),
 (2, 'Sales'),
 (3, 'Tech')
;

SQL statements to create the table:


CREATE TABLE Employees (
 Id INT NOT NULL AUTO_INCREMENT,
 FName VARCHAR(35) NOT NULL,
 LName VARCHAR(35) NOT NULL,
 PhoneNumber VARCHAR(11),
 ManagerId INT,
 DepartmentId INT NOT NULL,
Salary INT NOT NULL,
 HireDate DATETIME NOT NULL,
 PRIMARY KEY(Id),
 FOREIGN KEY (ManagerId) REFERENCES Employees(Id),
 FOREIGN KEY (DepartmentId) REFERENCES Departments(Id)
);
INSERT INTO Employees
 ([Id], [FName], [LName], [PhoneNumber], [ManagerId], [DepartmentId], [Salary], [HireDate])
VALUES
 (1, 'James', 'Smith', 1234567890, NULL, 1, 1000, '01-01-2002'),
 (2, 'John', 'Johnson', 2468101214, '1', 1, 400, '23-03-2005'),
 (3, 'Michael', 'Williams', 1357911131, '1', 2, 600, '12-05-2009'),
 (4, 'Johnathon', 'Smith', 1212121212, '2', 1, 500, '24-07-2016')
;

SQL statements to create the table:

CREATE TABLE Customers (
 Id INT NOT NULL AUTO_INCREMENT,
 FName VARCHAR(35) NOT NULL,
 LName VARCHAR(35) NOT NULL,
 Email varchar(100) NOT NULL,
 PhoneNumber VARCHAR(11),
 PreferredContact VARCHAR(5) NOT NULL,
 PRIMARY KEY(Id)
);
INSERT INTO Customers
 ([Id], [FName], [LName], [Email], [PhoneNumber], [PreferredContact])
VALUES
 (1, 'William', 'Jones', 'william.jones@example.com', '3347927472', 'PHONE'),
 (2, 'David', 'Miller', 'dmiller@example.net', '2137921892', 'EMAIL'),
 (3, 'Richard', 'Davis', 'richard0123@example.com', NULL, 'EMAIL')
;

SQL statements to create the table:

CREATE TABLE Cars (
 Id INT NOT NULL AUTO_INCREMENT,
 CustomerId INT NOT NULL,
 EmployeeId INT NOT NULL,
 Model varchar(50) NOT NULL,
 Status varchar(25) NOT NULL,
TotalCost INT NOT NULL,
 PRIMARY KEY(Id),
 FOREIGN KEY (CustomerId) REFERENCES Customers(Id),
 FOREIGN KEY (EmployeeId) REFERENCES Employees(Id)
);
INSERT INTO Cars
 ([Id], [CustomerId], [EmployeeId], [Model], [Status], [TotalCost])
VALUES
 ('1', '1', '2', 'Ford F-150', 'READY', '230'),
 ('2', '1', '2', 'Ford F-150', 'READY', '200'),
 ('3', '2', '1', 'Ford Mustang', 'WAITING', '100'),
 ('4', '3', '3', 'Toyota Prius', 'WORKING', '1254')
;



Conclusion

In this page (written and validated by ) you learned about SQLServer Example Databases and Tables . What's Next? If you are interested in completing SQLServer tutorial, your next topic will be learning about: SQLServer SELECT.



Incorrect info or code snippet? We take very seriously the accuracy of the information provided on our website. We also make sure to test all snippets and examples provided for each section. If you find any incorrect information, please send us an email about the issue: mockstacks@gmail.com.


Share On:


Mockstacks was launched to help beginners learn programming languages; the site is optimized with no Ads as, Ads might slow down the performance. We also don't track any personal information; we also don't collect any kind of data unless the user provided us a corrected information. Almost all examples have been tested. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. By using Mockstacks.com, you agree to have read and accepted our terms of use, cookies and privacy policy.