Created
April 28, 2020 05:23
-
-
Save JoaoFelipe/5b13a02475876621b5636ea62e1137f8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
group: CEDERJ - Usuario, Duvida, Resposta | |
description: Tabelas para resolucao da APX1 do CEDERJ | |
Usuario = { | |
CodUsuario, Nome | |
1, 'Alice' | |
2, 'Lucas' | |
3, 'Caio' | |
4, 'Daniela' | |
} | |
Duvida = { | |
CodDuvida, DataPostagem, Titulo, Text, CodUsuario | |
1, '20/04/2020', 'Questão 3', 'Como fazer?', 1 | |
2, '21/04/2020', 'Questão 2', 'Qual tradução?', 2 | |
} | |
Resposta = { | |
CodDuvida, SeqResposta, TextoResposta, CodUsuario | |
1, 1, 'Também não ...', 3 | |
1, 2, 'Comece por ...', 2 | |
1, 3, 'Obrigada', 1 | |
1, 4, 'Obrigado', 3 | |
2, 1, 'Termina com ...', 3 | |
2, 2, 'Grande empresa', 1 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment