Hi,
In this video tutorial,I explain How To Create A SQL Table Using SSMS -SQL Server Management Studio in SQL Server .I create a table PcustomerMaster
in this demo video
Table Name : PcustomerMaster
Columns : CustomerId,
CustomerName,
CustomerCode,
CutomerAddress,
CustomerNo
SQL Table Creation Script
===========================================================
USE [TechNurseryDB]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
CREATE TABLE [dbo].[PcustomerMaster](
[CustomerId] [int] NOT NULL,
[CustomerName] [varchar](50) NULL,
[CustomerCode] [varchar](50) NULL,
[CutomerAddress] [varchar](50) NULL,
[CustomerNo] [varchar](50) NULL
) ON [PRIMARY]
GO
SET ANSI_PADDING OFF
GO
Thanks
Please Comment ,Like,Subscribe and Press Notification Bell Icon
On this page of the site you can watch the video online How To Create a SQL Table Using SSMS SQL Server management Studio in SQL Server with a duration of hours minute second in good quality, which was uploaded by the user Tech Nursery 26 January 2020, share the link with friends and acquaintances, this video has already been watched 49 times on youtube and it was liked by 3 viewers. Enjoy your viewing!