Ruhi Cenet's Blog
Pages
Home
COMPUTER SCIENCE
OTHERS
ABOUT ME
Creating Simple Table In Microsoft SQL Server 2008
/*We are creating a database to use.*/
create database database1
use database1
/*We are creating our table.*/
create table table1
(
name varchar(20),
no int
)
/*We are selecting our table.*/
select * from table1
Newer Post
Older Post
Home