Quantcast
Channel: Joomla! Forum - community, help and support
Viewing all articles
Browse latest Browse all 1418

Administration Joomla! 5.x • Re: Step by step to create a list with states and cities with Fields Joomla

$
0
0
Hi,

Please post the full structure of the table , There is mismatch in column name.

Regards
Kishore
Thanks for the feedback Kishore

Code:

-- Estrutura da tabela `cidades`--CREATE TABLE `cidades` (  `id` int NOT NULL,  `nome` varchar(120) DEFAULT NULL,  `id_estado` int DEFAULT NULL) ENGINE=InnoDB DEFAULT CHARSET=latin1;---- Extraindo dados da tabela `cidades`--INSERT INTO `cidades` (`id`, `nome`, `id_estado`) VALUES(1, 'Afonso Cláudio', 8),(2, 'Ãgua Doce do Norte', 8),(3, 'Ãguia Branca', 8),(4, 'Alegre', 8),(5, 'Alfredo Chaves', 8),(6, 'Alto Rio Novo', 8),(7, 'Anchieta', 8),over 5 thousand cities....- Estrutura da tabela `estados`--CREATE TABLE `estados` (  `id` int NOT NULL,  `nome` varchar(75) DEFAULT NULL,  `uf` varchar(5) DEFAULT NULL) ENGINE=InnoDB DEFAULT CHARSET=latin1;---- Extraindo dados da tabela `estados`--INSERT INTO `estados` (`id`, `nome`, `uf`) VALUES(1, 'Acre', 'AC'),(2, 'Alagoas', 'AL'),(3, 'Amazonas', 'AM'),(4, 'Amapá', 'AP'),(5, 'Bahia', 'BA'),(6, 'Ceará', 'CE'),(7, 'Distrito Federal', 'DF'),(8, 'Espírito Santo', 'ES'),(9, 'Goiás', 'GO'),(10, 'Maranhão', 'MA'),(11, 'Minas Gerais', 'MG'),(12, 'Mato Grosso do Sul', 'MS'),(13, 'Mato Grosso', 'MT'),(14, 'Pará', 'PA'),(15, 'Paraíba', 'PB'),(16, 'Pernambuco', 'PE'),(17, 'Piauí', 'PI'),(18, 'Paraná', 'PR'),(19, 'Rio de Janeiro', 'RJ'),(20, 'Rio Grande do Norte', 'RN'),(21, 'Rondônia', 'RO'),(22, 'Roraima', 'RR'),(23, 'Rio Grande do Sul', 'RS'),(24, 'Santa Catarina', 'SC'),(25, 'Sergipe', 'SE'),(26, 'São Paulo', 'SP'),(27, 'Tocantins', 'TO');---- Índices para tabelas despejadas------ Índices para tabela `cidades`--ALTER TABLE `cidades`  ADD PRIMARY KEY (`id`),  ADD KEY `fk_Cidade_estado` (`id_estado`);---- Índices para tabela `estados`--ALTER TABLE `estados`  ADD PRIMARY KEY (`id`);---- AUTO_INCREMENT de tabelas despejadas------ AUTO_INCREMENT de tabela `cidades`--ALTER TABLE `cidades`  MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5565;---- AUTO_INCREMENT de tabela `estados`--ALTER TABLE `estados`  MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=28;COMMIT;

Statistics: Posted by rikaryo — Thu May 09, 2024 7:24 pm



Viewing all articles
Browse latest Browse all 1418

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>