MySQL 101-01

Descrição

A general Quiz on some basic SQL knowledge, focusing on general SQL and some MySQL specific questions.
Chris Lee
Quiz por Chris Lee, atualizado more than 1 year ago
Chris Lee
Criado por Chris Lee mais de 9 anos atrás
36
1

Resumo de Recurso

Questão 1

Questão
Which of the following is a correctly written SQL Insert statement?
Responda
  • INSERT table VALUES (value1, value2, value3);
  • INSERT INTO table VALUES (value1, value2, value3);
  • INSERT INTO database TABLE(table(schema));
  • INSERT TABLE INTO database table(schema);

Questão 2

Questão
When writing DELETE statements, it is often a good idea to begin with a SELECT statement, to verify that your are targeting the correct data for deletion.
Responda
  • True
  • False

Questão 3

Questão
C.R.U.D is an acronym for the four basic operations of a database system. What are they?
Responda
  • Create, Retrieve, Upgrade, Delete
  • Collate, Retrieve, Update, Delete
  • Create, Recall, Update, Delete
  • Create, Retrieve, Update, Delete
  • Create, Retrieve, Update, Destroy

Questão 4

Questão
In SQL terminology, what does DML stand for?
Responda
  • Data Modification Language
  • Data Manipulation Language
  • Digital Manipulation Language
  • Digital Modification Language

Questão 5

Questão
In SQL terminology, What does DDL Stand for?
Responda
  • Digital Definition Language
  • Data Detention Language
  • Digital Determination Language
  • Data Definition Language

Questão 6

Questão
SQL code that can be categorized as DML is used primarily for:
Responda
  • Adding, querying, manipulating and deleting data from tables and data sets.
  • Defining tables, indexes, and data relationships.
  • Storing data in tables, indexes, and primary keys.
  • Inserting data relationships into indexes, tables, and primary keys.

Questão 7

Questão
SQL code that can be categorized as DDL is used primarily for:
Responda
  • Inserting data relationships into indexes, tables, and primary keys.
  • Adding, querying, manipulating and deleting data from tables and data sets.
  • Defining tables, indexes, and data relationships.
  • Storing data in tables, indexes, and primary keys.

Questão 8

Questão
Which answer most completely and correctly describes what this SQL statement will do? SELECT Name, LifeExpectancy AS 'Life Expectancy' FROM Country;
Responda
  • Return all rows from the Name and LifeExpectancy columns in the country table.
  • Return all rows from the Name and LifeExpectancy columns in the country table, renaming the column header displaying the LifeExpectancy column's results to 'Life Expectancy'.
  • Return all rows from the Name and LifeExpectancy columns in the country table where the phrase 'Life Expectancy' is found in the name column.
  • This statement is incorrectly written. It will produce an error.

Questão 9

Questão
Which answer most completely and correctly describes what the following SQL statement will do? SELECT "Hi, my name is Jimmy.";
Responda
  • This statement is not valid, it will return an error.
  • This will return a single row with the value "Hi, my name is Jimmy.".
  • This will return a single row with the header <String> and the value "Hi, my name is Jimmy.".
  • This will return the value "Hi, my name is Jimmy." in a column with the header name "Hi, my name is Jimmy."

Questão 10

Questão
Which answer most completely and correctly describes what the following SQL statement will do? SELECT FROM inventory WHERE item_desc like '%shoe%';
Responda
  • This will return all rows from the customer table where the item_desc column contains the sub-string 'shoe'.
  • This statement is written incorrectly, it will return an error.
  • This will return all rows from the customer table where the item_desc column begins with the sub-string 'shoe'.
  • This will return all rows from the customer table where the item_desc column ends with the sub-string 'shoe'.

Questão 11

Questão
This SQL statement will return all rows from the 'Countries' table: SELECT * FROM Countries; Which of the following will return the number of rows in the Countries table? 1. SELECT * (COUNT) FROM Countries; 2. SELECT COUNT FROM Countries; 3. SELECT COUNT(*) FROM Countries; 4. All of the above.
Responda
  • 1
  • 2
  • 3
  • 4

Questão 12

Questão
True or False: Given a database with table named test that has columns named 'id' and 'value' This is a valid SQL statement: SELECT * FROM test WHERE value = NULL;
Responda
  • True
  • False

Questão 13

Questão
In MySql, this create table statement is not valid. Why? CREATE TABLE test ( a INTEGER AUTO_INCREMENT, b TEXT DEFAULT 'nothing', c TEXT NOT NULL );
Responda
  • The semicolon is unnecessary.
  • The AUTO_INCREMENT keyword is misused.
  • There is a comma missing after the last column declaration.
  • The DEFAULT keyword is misused.

Questão 14

Questão
In MySQL, which of these statements will successfully create a table named simpleTest with an id field set as an auto-increment integer with a primary key constraint?
Responda
  • CREATE TABLE simpleTest( id INTEGER AUTO_INCREMENT PRIMARY KEY, fName TEXT NOT NULL, lName TEXT NOT NULL );
  • CREATE TABLE simpleTest( id INTEGER AUTO_INCREMENT, fName TEXT NOT NULL, lName TEXT NOT NULL, PRIMARY KEY(id) );
  • Neither A nor B is correct.
  • Both A and B are correct.

Questão 15

Questão
The term "Query" is often used to refer to what kind of SQL statements?
Responda
  • CREATE
  • SELECT
  • INSERT
  • ALTER

Semelhante

SQL Quiz
R M
Midterm 2 (Chapter 5 - 13)
Yorria Raine
SQL Quiz
Chris Cronin
Database Final Exam
dbm
Coding Quiz
ryanseaborne
Technical Proposal (continued)
Rebbecca Stanley
Microsoft Virtual Academy - SQL Server Basics
chrisburford
Chapter 4 Key Terms
Stephanie Spearman
Tipos de bases de datos
Jeffrey Bedoya
Databases
Alex Baine
SQL language
Gildardo Cortes Gallo