Sunday, March 1, 2015

Create SQL Table

start here learn sql database.
Create Data Table:

CREATE TABLE Employee(Column1, Column2, Column3)

Ex. Create Employee Data Table,


CREATE TABLE EmployeeData
(
EmployeeId Int,
EmployeeName nvarchar(20),
Address nvarchar(100)
)

No comments:

Post a Comment