SQL PRACTICE
Q1) write the SQL statements to create the table below:
SAMPLE ANSWER
Copyright By PowCoder代写 加微信 powcoder
THIS IS THE ANSWER FOR THE ABOVE QUESTION. SO YOUR ANSWERS SHOULD LOOK LIKE THIS. DATA TYPES, KEYS AND VALUES NEED TO BE ADDED.
CREATE TABLE Departments (
Id INT NOT NULL,
Name VARCHAR (25) NOT NULL,
PRIMARY KEY(Id)
INSERT INTO Departments
([Id], [Name])
(1, ‘HR’),
(2, ‘Sales’),
(3, ‘Tech’)
Q2) write the SQL statements to create the table below:
Q3) write the SQL statements to create the table below:
Q4) write the SQL statements to create the table below:
Q5) write the SQL statements to create the table below:
Q6) write the SQL statements to create the table below:
BooksAuthors
程序代写 CS代考 加微信: powcoder QQ: 1823890830 Email: powcoder@163.com