Visual Studio Code MSSQL Extension | Part 2: Write SQL

Publicado el: 25 octubre 2021
en el canal de: 876WilliamsTechJA
3,273
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),
);


En esta página del sitio puede ver el video en línea Visual Studio Code MSSQL Extension | Part 2: Write SQL de Duración hora minuto segunda en buena calidad , que subió el usuario 876WilliamsTechJA 25 octubre 2021, comparta el enlace con amigos y conocidos, en youtube este video ya ha sido visto 3,273 veces y le gustó 50 a los espectadores. Disfruta viendo!