I am having difficulty creating a database and listing 3 tables: return the customer's name and surname, your neighborhood, and the values of your movements, the date ordering the movements for this sql command to work
SELECT ClienteNome, ClienteSobrenome, ClienteBairro, MovimentoData,MovimentoValor
FROM Clientes, Contas, Movimentos
WHERE Clientes.ClienteCodigo=Contas.ClienteCodigo
AND Contas.ContaNumero=Movimentos.ContaNumero
ORDER BY MovimentoData desc;