Informática, perguntado por maryannass8973, 1 ano atrás

PERGUNTA 4 Selecionar os livros (todos os campos) cujo preço esteja entre 10 e 60 a. select * from livro where liv_preco > 10 and < 60; b. select * from livro where liv_preco > 10 and not is null; c. select * from livro where liv_preco between 10 or 60; d. select * from livro where liv_preco in (10,60); e. select * from livro where liv_preco between 10 and 60;

Soluções para a tarefa

Respondido por bokomoko
9
e. select * from livro where liv_preco between 10 and 60;

Respondido por deboratassano
0

Resposta:

e

Explicação:

select * from livro where liv_preco between 10 and 60;

Perguntas interessantes