Login   Register  
PHP Classes
elePHPant
Icontem

File: cidades.sql

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Igor Herson Aquino de França  >  Advanced Search  >  cidades.sql  >  Download  
File: cidades.sql
Role: Auxiliary data
Content type: text/plain
Description: sql for test
Class: Advanced Search
Compose and execute MySQL database SELECT queries
Author: By
Last change:
Date: 2009-01-14 12:13
Size: 576 bytes
 

Contents

Class file image Download
CREATE TABLE IF NOT EXISTS `cidades` (
  `id` int(11) NOT NULL auto_increment,
  `Regiao` varchar(255) NOT NULL default '',
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=13 ;

--
-- Extraindo dados da tabela `cidades`
--

INSERT INTO `cidades` (`id`, `Regiao`) VALUES
(1, 'REGI?O METROPOLITANA'),
(2, 'MATA NORTE'),
(3, 'MATA SUL'),
(4, 'AGRESTE SETENTRIONAL'),
(5, 'AGRESTE CENTRAL'),
(6, 'AGRESTE MERIDIONAL'),
(7, 'MOXOT'),
(8, 'PAJE'),
(9, 'ITAPARICA'),
(10, 'SERT?O CENTRAL'),
(11, 'S?O FRANCISCO'),
(12, 'ARARIPE');