Quiz sobre conhecimentos ExplendGE SQL 20.07.2023
>>>Quiz sobre conhecimentos ExplendGE SQL 20.07.2023<<<
0
0
0
1
Qual Consulta SQL que traz o cliente especifico por Codigo?
Select * from cliente where cliente =123;
Select * from cliente where cliente >=123;
Select * from cliente where cliente <=123;
Select * from cliente where cliente <>123;
Select * from cliente where cliente in 123;
2
Qual Consulta SQL que traz os clientes cujo codigo seja 1,2?
Select * from cliente where cliente = (1,2);
Select * from cliente where cliente not in (1,2);
Select * from cliente where cliente = '1','2');
Select * from cliente where cliente = 1,2;
Select * from cliente where cliente in (1,2);
3
Qual Consulta SQL que traz os Clientes que tenha o nome começado com Joao?
Select * from cliente where nome like "%joao%";
Select * from cliente where nome = '%joao%';
Select * from cliente where nome like 'joao';
Select * from cliente where nome like ('%joao%');
Select * from cliente where nome like '%joao%';
4
Qual Consulta SQL que traz a quantidade de Clientes Cadastrados?
Select sum(cliente) from cliente;
Select * from cliente;
Select count(cliente) from cliente;
Select max(cliente) from cliente;
Select cliente from cliente;
5
Qual é a Consulta SQL, que irá listar todos os clientes cadastrados exceto do cliente com codigo =1?
Select * from cliente where cliente < 1;
Select * from cliente where cliente >< 1;
Select * from cliente where cliente <> 1;
Select * from cliente where cliente => 1;
Select * from cliente where cliente <> 2;