Visual Studio Code MSSQL Extension | Part 2: Write SQL

Published: 25 October 2021
on channel: 876WilliamsTechJA
3k
50

In this video I will look at the Visual Studio Code MSSQL extension from Microsoft. The Visual Studio Code MSSQL extension allows us to integrate and use Microsoft SQL Server in Visual Studio Code.

See SQL Commands below to create the database and the tables:
--Question 1: Creating the database
--Create Database my_business;

--Question 2
Create table employee(
Emp_ID int Primary Key,
Emp_Name varchar(255),
Emp_Year int,
Emp_Status varchar(30),
Salary float,
Department varchar(30)
);

Create table manager(
Man_ID int Primary Key,
Man_Name varchar(255),
Salary float,
Emp_ID int Foreign Key References employee(Emp_ID),
);


Watch video Visual Studio Code MSSQL Extension | Part 2: Write SQL online without registration, duration 28 minute 56 second in high hd quality. This video was added by user 876WilliamsTechJA 25 October 2021, don't forget to share it with your friends and acquaintances, it has been viewed on our site 3 thousand once and liked it 5 people.