Links

Thursday, 7 April 2011

How to create a Table in SQL Server?

Create table table_name
(
column_name Datetype;
column_name Datetype;
...........
)
e.g
create table technology
(
pid int,
pname varchar(50),
prate int
)






No comments:

Post a Comment