Esta es la siguiente tabla que quiero eliminar algunos campos:
Cita:
Todo lo que esta en rojo "created, published, expired, hostname, nohtml, nosmiley" quisiera eliminarlo de una sola sentencia de SQL ¿Como?CREATE TABLE `xoops_stories` (
`storyid` int(8) unsigned NOT NULL auto_increment,
`uid` int(5) unsigned NOT NULL default '0',
`title` varchar(255) NOT NULL default '',
`created` int(10) unsigned NOT NULL default '0',
`published` int(10) unsigned NOT NULL default '0',
`expired` int(10) unsigned NOT NULL default '0',
`hostname` varchar(20) NOT NULL default '',
`nohtml` tinyint(1) NOT NULL default '0',
`nosmiley` tinyint(1) NOT NULL default '0',
`hometext` text NOT NULL,
`bodytext` text NOT NULL,
`keywords` varchar(255) NOT NULL default '',
`description` varchar(255) NOT NULL default '',
`counter` int(8) unsigned NOT NULL default '0',
`topicid` smallint(4) unsigned NOT NULL default '1',
`ihome` tinyint(1) NOT NULL default '0',
`notifypub` tinyint(1) NOT NULL default '0',
`story_type` varchar(5) NOT NULL default '',
`topicdisplay` tinyint(1) NOT NULL default '0',
`topicalign` char(1) NOT NULL default 'R',
`comments` smallint(5) unsigned NOT NULL default '0',
`rating` double(6,4) NOT NULL default '0.0000',
`votes` int(11) unsigned NOT NULL default '0',
PRIMARY KEY (`storyid`),
KEY `idxstoriestopic` (`topicid`),
KEY `ihome` (`ihome`),
KEY `uid` (`uid`),
KEY `published_ihome` (`published`,`ihome`),
KEY `title` (`title`(40)),
KEY `created` (`created`),
FULLTEXT KEY `search` (`title`,`hometext`,`bodytext`)
) ENGINE=MyISAM AUTO_INCREMENT=812 ;
`storyid` int(8) unsigned NOT NULL auto_increment,
`uid` int(5) unsigned NOT NULL default '0',
`title` varchar(255) NOT NULL default '',
`created` int(10) unsigned NOT NULL default '0',
`published` int(10) unsigned NOT NULL default '0',
`expired` int(10) unsigned NOT NULL default '0',
`hostname` varchar(20) NOT NULL default '',
`nohtml` tinyint(1) NOT NULL default '0',
`nosmiley` tinyint(1) NOT NULL default '0',
`hometext` text NOT NULL,
`bodytext` text NOT NULL,
`keywords` varchar(255) NOT NULL default '',
`description` varchar(255) NOT NULL default '',
`counter` int(8) unsigned NOT NULL default '0',
`topicid` smallint(4) unsigned NOT NULL default '1',
`ihome` tinyint(1) NOT NULL default '0',
`notifypub` tinyint(1) NOT NULL default '0',
`story_type` varchar(5) NOT NULL default '',
`topicdisplay` tinyint(1) NOT NULL default '0',
`topicalign` char(1) NOT NULL default 'R',
`comments` smallint(5) unsigned NOT NULL default '0',
`rating` double(6,4) NOT NULL default '0.0000',
`votes` int(11) unsigned NOT NULL default '0',
PRIMARY KEY (`storyid`),
KEY `idxstoriestopic` (`topicid`),
KEY `ihome` (`ihome`),
KEY `uid` (`uid`),
KEY `published_ihome` (`published`,`ihome`),
KEY `title` (`title`(40)),
KEY `created` (`created`),
FULLTEXT KEY `search` (`title`,`hometext`,`bodytext`)
) ENGINE=MyISAM AUTO_INCREMENT=812 ;
Y aqui estan los datos de esa tabla, colocare unas cuantas:
Código HTML:
INSERT INTO `xoops_stories` VALUES(809, 1, 'Computadoras equipos', 1210873649, 1210873649, 0, '190.42.93.122', 0, 0, '[b]Este es un ejemplo de titulo[/b] Este esl texto corto previo', 'Este es el contenido largo del texto', '', '', 0, 6, 0, 1, 'admin', 0, 'R', 0, 0.0000, 0); INSERT INTO `xoops_stories` VALUES(810, 1, 'Mercado de pcs', 1210873635, 1210873649, 0, '190.42.93.122', 0, 0, '[b]Este es un ejemplo de titulo[/b] Este esl texto corto previo', 'Este es el contenido largo del texto', '', '', 0, 6, 0, 1, 'admin', 0, 'R', 0, 0.0000, 0); INSERT INTO `xoops_stories` VALUES(811, 1, 'Marketing por internet', 1210873763, 1210873763, 0, '190.42.93.122', 0, 0, 'Texto corto del contenido', 'El texto larguisimo del contenido', '', '', 1, 1, 0, 1, 'admin', 0, 'R', 0, 0.0000, 0);
Yo estoy adaptando el prefabricado Xoops para pasarlo a Wordpress, xoops_stories =====>`wp_posts` he buscado algun script y no encuentro asi que me decidi por lo mas dificil pero tengo que hacerlo.
Gracias por sus comentarios y/o ayudas