Hi Friends,
Am struggling with one concept give me some idea..
I want to declare multiple column names of same datatypes by specifing the datatype only once in the query..
Eg : create table [tablename]( col1 varchar(100),col2 varchar(100) )
as
create table [tablename]( col1,col2 varchar(100) )