-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbanco.sql
107 lines (85 loc) · 2.56 KB
/
banco.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
-- phpMyAdmin SQL Dump
-- version 5.1.1
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Tempo de geração: 08-Abr-2022 às 02:41
-- Versão do servidor: 8.0.27
-- versão do PHP: 8.1.1
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Banco de dados: `banco`
--
-- --------------------------------------------------------
--
-- Estrutura da tabela `conta_corrente`
--
CREATE TABLE `conta_corrente` (
`id_conta_corrente` int NOT NULL,
`numero_conta_corrente` varchar(5) NOT NULL,
`saldo_conta_corrente` decimal(5,2) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
-- --------------------------------------------------------
--
-- Estrutura da tabela `conta_poupanca`
--
CREATE TABLE `conta_poupanca` (
`id_conta_poupanca` int NOT NULL,
`numero_conta_poupanca` varchar(5) NOT NULL,
`saldo_conta_poupanca` decimal(5,2) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
-- --------------------------------------------------------
--
-- Estrutura da tabela `conta_salario`
--
CREATE TABLE `conta_salario` (
`id_conta_salario` int NOT NULL,
`numero_conta_salario` varchar(5) NOT NULL,
`saldo_conta_salario` decimal(5,2) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
--
-- Índices para tabelas despejadas
--
--
-- Índices para tabela `conta_corrente`
--
ALTER TABLE `conta_corrente`
ADD PRIMARY KEY (`id_conta_corrente`);
--
-- Índices para tabela `conta_poupanca`
--
ALTER TABLE `conta_poupanca`
ADD PRIMARY KEY (`id_conta_poupanca`);
--
-- Índices para tabela `conta_salario`
--
ALTER TABLE `conta_salario`
ADD PRIMARY KEY (`id_conta_salario`);
--
-- AUTO_INCREMENT de tabelas despejadas
--
--
-- AUTO_INCREMENT de tabela `conta_corrente`
--
ALTER TABLE `conta_corrente`
MODIFY `id_conta_corrente` int NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT de tabela `conta_poupanca`
--
ALTER TABLE `conta_poupanca`
MODIFY `id_conta_poupanca` int NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT de tabela `conta_salario`
--
ALTER TABLE `conta_salario`
MODIFY `id_conta_salario` int NOT NULL AUTO_INCREMENT;
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;