tmb85
Quiz by , created more than 1 year ago

Quiz on MySQL, created by tmb85 on 08/04/2015.

17
1
0
No tags specified
tmb85
Created by tmb85 over 9 years ago
Close

MySQL

Question 1 of 22

1

Qual o comando correto para criar uma nova DATABASE com o nome de "teste"?

Select one of the following:

  • CREATE DATABASE teste;

  • CREATE teste DATABASE;

  • CREATE TABLE teste;

  • SHOW DATABASE teste;

Explanation

Question 2 of 22

1

Qual o comando para selecionar uma DATABASE com no nome "teste".

Select one of the following:

  • USE teste;

  • SELECT * FROM teste;

  • USAR teste;

  • CREATE DATABASE teste;

Explanation

Question 3 of 22

1

Para criar uma tabela com o nome cliente, qual comando abaixo está correto?

Select one of the following:

  • CREATE TABLE cliente (id int not null auto_increment, nome varchar(40) not null, telefone int(9) not null, primary key(id));

  • CREATE TABLE (id int not null auto_increment, nome varchar(40) not null, telefone int(9) not null, primary key(id));

  • CREATE DATABASE teste;

  • CREATE TABLE teste (id int not null auto_increment, nome varchar(40) not null, telefone int(9) not null, primary key(id));

Explanation

Question 4 of 22

1

Qual comando é utilizado para inserir um registro de CLIENTE na tabela cliente?

Select one of the following:

  • INSERT INTO cliente (nome, telefone) VALUES ("Thiago",33661100);

  • INSERIR INTO teste (nome, telefone) VALUES ("Thiago",33661100)

  • SELECT * FROM teste;

  • UPDATE teste CHANGE nome nome varchar(30) NOT NULL;

Explanation

Question 5 of 22

1

Qual é o comando para exibir as tabelas existentes dentro de uma DATABASE?

Select one of the following:

  • SHOW TABLES;

  • SELECT * FROM DATABASE;

  • DESCRIBE TABLES;

  • SHOW DATABASES;

Explanation

Question 6 of 22

1

Qual o comando para exibir a estrutura da tabela CLIENTE já criada?

Select one of the following:

  • DESCRIBE cliente;

  • SELECT * FROM cliente;

  • SHOW CLIENTE;

  • UPDATE CLIENTE;

Explanation

Question 7 of 22

1

Como podemos selecionar todos os registros da tabela cliente?

Select one of the following:

  • SELECT * FROM cliente;

  • SHOW * FROM cliente;

  • SELECT nome * FROM cliente;

  • SHOW TABLES;

Explanation

Question 8 of 22

1

Qual comando exibe apenas o nome dos registros da tabela CLIENTE?

Select one of the following:

  • SELECT nome FROM cliente;

  • SHOW nome FROM cliente;

  • SELECT * FROM CLIENTE;

  • DESCRIBE nome FROM CLIENTE

Explanation

Question 9 of 22

1

Comando utilizado para excluir uma tabela chamada CLIENTE é:

Select one of the following:

  • DROP TABLE cliente;

  • DELETE TABLE cliente;

  • DELETE FROM TABLE cliente;

  • DELETE CLIENTE;

Explanation

Question 10 of 22

1

Qual é o comando utilizado para exibir apenas os 10 primeiros clientes cadastrados na tabela CLIENTE?

Select one of the following:

  • SELECT * FROM cliente LIMIT 10;

  • SHOW * FROM cliente LIMIT 10;

  • SELECT nome FROM cliente LIMIT 10;

  • SELECT * FOM cliente WHERE nome LIMIT 10;

Explanation

Question 11 of 22

1

Qual é comando utilizado para excluir o registro com ID=2 na tabela CLIENTE?

Select one of the following:

  • DELETE FROM cliente WHERE id =2;

  • DROP TABLE cliente WHERE id=2;

  • DELETE FROM cliente WHERE ID=2

  • DROP FROM cliente WHERE ID=2;

Explanation

Question 12 of 22

1

Qual é o comando utilizado para alterar o nome do cliente com id=2 para Silvio Santos:

Select one of the following:

  • UPDATE cliente SET nome=”Silvio Santos” where id =2;

  • INSERT INTO cliente (nome) VALUES (“Silvio Santos”);

  • ALTER TABLE cliente SET nome=”Silvio Santos” where id=2;

  • UPDATE cliente nome=”Silvio Santos” where id=2;

Explanation

Question 13 of 22

1

Qual o comando utilizado para DELETAR o registro com ID=2 da tabela CLIENTE:

Select one of the following:

  • DELETE FROM cliente WHERE id =2;

  • DROP FROM cliente WHERE id=2;

  • DELETE cliente WHERE id=2;

  • DELETE * FROM cliente WHERE id=2;

Explanation

Question 14 of 22

1

Na tabela CLIENTE a coluna EMAIL deverá ser alterada para contato, qual o comando utilizado para isso:

Select one of the following:

  • ALTER TABLE cliente CHANGE email contato VARHCAR(40) NOT NULL;

  • UPDATE TABLE cliente change email contato VARHCAR(40) NOT NULL

  • DROP TABLE cliente change email contato;

  • SELECT * FROM cliente where email=contato;

Explanation

Question 15 of 22

1

Qual o comando utilizado para adicionar a coluna EMAIL na tabela CLIENTE;

Select one of the following:

  • ALTER TABLE cliente ADD email varchar(40) not null;

  • UPDATE cliente SET email from CLIENTE;

  • ALTER TABLE cliente change email email varchar(40) not null;

  • ALTER TABLE cliente email varchar(40) not null;

Explanation

Question 16 of 22

1

Qual o comando utilizado para SELECIONAR todos os clientes com SILVA no nome/sobrenome?

Select one of the following:

  • SELECT * FROM cliente WHERE nome like “%SILVA%”;

  • SELECT * FROM cliente WHERE nome=”Silva”;

  • SELECT * FROM cliente WHERE nome=”%Silva”;

  • SELECT * FROM cliente like nome “%SILVA%”;

Explanation

Question 17 of 22

1

Pra que serve a opção UNIQUE nos campos da estrutura da tabela.

Select one of the following:

  • Para não permitir registros duplicados.

  • Para definir a chave primária da tabela.

  • Não existe essa opção.

  • Para gerar o relacionamento da tabela.

Explanation

Question 18 of 22

1

Como listar apenas os campos NOME e EMAIL da tabela CLIENTE.

Select one of the following:

  • SELECT nome,email FROM cliente;

  • SELECT cliente FROM nome, email;

  • SELECT nome e email FROM cliente;

  • SHOW nome,email FROM cliente;

Explanation

Question 19 of 22

1

Qual o tipo de campo que podemos utilizar para representar números com casas decimais?

Select one of the following:

  • DATE

  • FLOAT

  • INT e BIGINT

  • BIGINT e VARCHAR

Explanation

Question 20 of 22

1

O que é a opção NOT NULL adicionada nos campos na hora da criação da tabela.

Select one of the following:

  • Para permitir registros em branco.

  • Para não permitir registros em branco.

  • Para permitir registros duplicados.

  • Nenhuma das alternativas corretas.

Explanation

Question 21 of 22

1

Podemos ter duas chaves primárias em uma mesma tabela?

Select one of the following:

  • True
  • False

Explanation

Question 22 of 22

1

Qual o campo mais indicado para guardarmos CPF em banco de dados com pontos e traços.

Select one of the following:

  • FLOAT(12)

  • INT(12)

  • VARCHAR(12)

  • DOUBLE(12)

Explanation