How to create database in sql server (SSMS)
-Open SSMS
-CONNECT Database engine
CREATE DATABASE HRDB;
GO
USE HRDB;
GO
CREATE TABLE EMPLOYEES
(
ID INT IDENTITY PRIMARY KEY,
First_Name varchar(20),
Last_Name varchar(30) not null,
email varchar(30) unique,
salary int
);
GO
INSERT INTO EMPLOYEES (First_Name, Last_Name, email, salary)
VALUES ( 'Smith', 'Ellen', 'selen@gmail.com', 40000);
GO
SELECT * FROM EMPLOYEES;
On this page of the site you can watch the video online How to Create Database in SQL Server with a duration of hours minute second in good quality, which was uploaded by the user Data Science Center 17 March 2022, share the link with friends and acquaintances, this video has already been watched 328,527 times on youtube and it was liked by 1.5 thousand viewers. Enjoy your viewing!