Skip to content

Commit

Permalink
fixing
Browse files Browse the repository at this point in the history
  • Loading branch information
RufinoVfR committed Jan 14, 2025
1 parent 5575a8f commit ab2986a
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
1 change: 1 addition & 0 deletions docs/modulo02/DDL.md
Original file line number Diff line number Diff line change
Expand Up @@ -739,3 +739,4 @@ BEGIN
END;
$function$;

```
5 changes: 4 additions & 1 deletion docs/modulo02/DML.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
| --- | --- | --- | --- |
| 0.1 | 11/12/2023 | Criação do Documento | Vinícius Rufino |

```ALTER TABLE santuario RENAME TO saga;
```sql
ALTER TABLE santuario RENAME TO saga;
ALTER TABLE saga RENAME COLUMN id_santuario TO id_saga;
ALTER TABLE saga RENAME COLUMN id_missao_proximo_santuario TO id_missao_proxima_saga;
ALTER TABLE casa RENAME COLUMN id_santuario TO id_saga;
Expand Down Expand Up @@ -267,3 +268,5 @@ BEGIN
);
END;
$$ LANGUAGE plpgsql;

```
6 changes: 4 additions & 2 deletions docs/modulo02/DQL.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
| --- | --- | --- | --- |
| 0.1 | 11/12/2023 | Criação do Documento | Vinícius Rufino |

```-- 1. Listar informações do play
```sql
-- 1. Listar informações do play
SELECT * FROM Player;
-- 2. Listar todos os items no inventár
SELECT * FROM Inventario;
Expand Down Expand Up @@ -89,4 +90,5 @@ INSERT INTO Tipo_Item (id_item, tipo_item) VALUES (id_item, tipo_item);
END;
$$ LANGUAGE plpgsql;
-- Exemplo de uso
CALL insert_item(1, 'a');
CALL insert_item(1, 'a');
```
4 changes: 4 additions & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ nav:
- Diagrama Entidade Relacionamento: "modulo01/der.md"
- Modelo Lógico: "modulo01/ml.md"
- Dicionário de Dados: "modulo01/dicionario.md"
- Módulo 2:
- Data Definition Language: "modulo02/DDL.md"
- Data Manipulation Language: "modulo02/DML.md"
- Data Query Language: "modulo02/DQL.md"
- Apresentação: "apresentacao/modulo1.md"

theme:
Expand Down

0 comments on commit ab2986a

Please sign in to comment.