SQL basic query

SQL basic query

University

7 Qs

quiz-placeholder

Similar activities

Data Analytics - C3 - Q6 (SQL)

Data Analytics - C3 - Q6 (SQL)

University

10 Qs

UNJ x SC Pre-test

UNJ x SC Pre-test

University

10 Qs

AL7KA

AL7KA

KG - University

10 Qs

01 Databases Overview

01 Databases Overview

University

10 Qs

Consulta sobre Power Query

Consulta sobre Power Query

University

10 Qs

EC8071_CR_MODEL EXAM_QUIZ_V_(15.10.2020)-MORNING-PART-B

EC8071_CR_MODEL EXAM_QUIZ_V_(15.10.2020)-MORNING-PART-B

University

10 Qs

Project Planning

Project Planning

11th Grade - Professional Development

10 Qs

Gyak7_kiugró

Gyak7_kiugró

University

6 Qs

SQL basic query

SQL basic query

Assessment

Quiz

Other

University

Hard

Created by

Tín Bảo

Used 6+ times

FREE Resource

7 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 2 pts

Media Image

How many row of the result of the following query contains

SELECT *;

FROM Customers, Orders;

WHERE age <> 31 AND amount <> 400;

20

16

12

0

2.

MULTIPLE CHOICE QUESTION

1 min • 2 pts

Media Image

How many row of the result of the following query contains

SELECT *;

FROM Customers, Orders;

WHERE age <> 31 OR amount <> 400;

25

22

23

24

3.

MULTIPLE CHOICE QUESTION

1 min • 2 pts

With SQL, we want to select a column named "FirstName" from a table named "Persons". We also want the query result returns all string which the second character is ‘a’ and end with the character ‘h’.

Which one is the correct syntax?

Media Image
Media Image
Media Image
Media Image

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Consider the following table. What is the output of the below query?

SELECT first_name AS fn, age AS a;

FROM Customers;

WHERE a = 31;

Media Image
Media Image
Media Image

Syntax Error

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the correct SQL Query Order of Execution?

FROM > WHERE > SELECT > ORDER BY

SELECT > FROM > WHERE > ORDER BY

SELECT > WHERE > FROM > ORDER BY

FROM > SELECT > WHERE > ORDER BY

6.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

How to specify the Referential Integrity Constraints in SQL?

Using PRIMARY KEY clause

Using UNIQUE clause

Using FOREIGN KEY clause

Using CHECK clause

7.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

In addition to key and referential integrity constraints, other table constraints can also be specified through additional CHECK clauses at the end of a CREATE TABLE statement. These can also be called __________ constraints as they affected on each tuple individually as being inserted or modified.

row-based

column-based

key

optional