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
In questa pagina del sito puoi guardare il video online How To Create a SQL Table Using SSMS SQL Server management Studio in SQL Server della durata di ore minuti seconda in buona qualità , che l'utente ha caricato Tech Nursery 26 gennaio 2020, condividi il link con amici e conoscenti, su youtube questo video è già stato visto 49 volte e gli è piaciuto 3 spettatori. Buona visione!