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),
);
Nesta página do site você pode assistir ao vídeo on-line Visual Studio Code MSSQL Extension | Part 2: Write SQL duração hora minuto segundo em boa qualidade , que foi baixado pelo usuário 876WilliamsTechJA 25 Outubro 2021, compartilhe o link com seus amigos e conhecidos, no youtube este vídeo já foi visto 3,273 vezes e gostou 50 espectadores. Boa visualização!