SQL PRACTICE
Q1) Create database based on the tables below. Check for errors and fix them.
SQL statements to create the table:
Copyright By PowCoder代写 加微信 powcoder
CREATE TABLE Departments (
Id INT NOT NULL AUTO_INCREMENT,
Name VARCHAR (25) NOT NULL,
PRIMARY KEY(Id)
INSERT INTO Departments
([Id], [Name])
(1, ‘HR’),
(2, ‘Sales’),
(3, ‘Tech’)
BooksAuthors
程序代写 CS代考 加微信: powcoder QQ: 1823890830 Email: powcoder@163.com