newtojsp 0 Newbie Poster

Hi,

I have a table structure like this in mysql

CREATE TABLE abcd (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `path` varchar(500) NOT NULL,
  `tag` varchar(100) DEFAULT NULL,
  `name` varchar(45) NOT NULL,
  `type` int(10) unsigned NOT NULL,
  PRIMARY KEY (`id`),
  KEY `SRCHINDEX` (`TAG`,`TYP`) USING BTREE
)

How do I create the same table structure in microsoft sql server?

Thanks

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.