Advertisement
Guest User

Untitled

a guest
Nov 26th, 2015
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.70 KB | None | 0 0
  1. CREATE TABLE IF NOT EXISTS `categoria_candidatos` (
  2. `categoria_candidatos_id` int(11) NOT NULL AUTO_INCREMENT,
  3. `categoria_candidatos_nome` varchar(200) DEFAULT NULL,
  4. `categoria_candidatos_classe` varchar(200) DEFAULT NULL,
  5. PRIMARY KEY (`categoria_candidatos_id`)
  6. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=12 ;
  7.  
  8. --
  9. -- Fazendo dump de dados para tabela `categoria_candidatos`
  10. --
  11.  
  12. INSERT INTO `categoria_candidatos` (`categoria_candidatos_id`, `categoria_candidatos_nome`, `categoria_candidatos_classe`) VALUES
  13. (1, 'Outros', 'outros'),
  14. (2, 'Marketing', 'marketing'),
  15. (3, 'Jurídico regulátorio', 'juridico'),
  16. (4, 'Administrativo', 'administrativo'),
  17. (5, 'Gestão de risco', 'gestao'),
  18. (6, 'Projetos', 'projetos'),
  19. (7, 'Operacional transportes', 'transportes'),
  20. (8, 'Operacional geral', 'geral'),
  21. (9, 'Recursos humanos', 'recursos'),
  22. (10, 'Comercial', 'comercial'),
  23. (11, 'Financeiro', 'financeiro');
  24.  
  25.  
  26.  
  27. CREATE TABLE IF NOT EXISTS `candidatos` (
  28. `candidatos_id` int(11) NOT NULL AUTO_INCREMENT,
  29. `candidatos_nome` varchar(200) DEFAULT NULL,
  30. `candidatos_email` varchar(200) DEFAULT NULL,
  31. `candidatos_telefone` varchar(200) DEFAULT NULL,
  32. `candidatos_setor` varchar(200) DEFAULT NULL,
  33. `candidatos_pdf` varchar(200) DEFAULT NULL,
  34. PRIMARY KEY (`candidatos_id`)
  35. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ;
  36.  
  37. --
  38. -- Fazendo dump de dados para tabela `candidatos`
  39. --
  40.  
  41. INSERT INTO `candidatos` (`candidatos_id`, `candidatos_nome`, `candidatos_email`, `candidatos_telefone`, `candidatos_setor`, `candidatos_pdf`) VALUES
  42. (1, 'Adriana', 'adriana@gmail.com', '(11)4645-7895', '4', 'adriana.pdf'),
  43. (2, 'joao da silva', 'joao@hotmail.com', '(11) 4645-8985', '4', 'joao.pdf');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement