Skip to content

codingec/WindowsFormApplication

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CREATE A DATABASE NAMED DEEPc

CREATE A TABLE

Create a Table Products with the next values, or you could also just copy and paste this code and run it to create your table.

CREATE TABLE [dbo].[Products] ( [Id] INT IDENTITY (100, 10) NOT NULL, [product] NCHAR (10) NULL, [description] NCHAR (10) NULL, [price] NCHAR (10) NULL, [quantity] NCHAR (10) NULL, PRIMARY KEY CLUSTERED ([Id] ASC) );

OPEN SOLUTION IN VISUAL STUDIO 2015

Visual State Intro

About

some c# code sample

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages