Recommend this page to a friend! | Stumble It! | Bookmark in del.icio.us |
Classes of Leandro Prudente | > | cBancoDados | > | sql.txt | > | Download | ||
|
Download |
CREATE DATABASE IF NOT EXISTS teste_php_my; USE teste_php_my; DROP TABLE IF EXISTS `editoria`; CREATE TABLE `editoria` ( `ideditoria` int(10) unsigned NOT NULL auto_increment, `nome` varchar(100) NOT NULL, `descricao` text NOT NULL, PRIMARY KEY (`ideditoria`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; |