SQL JOINS

SQL JOINS

University

10 Qs

quiz-placeholder

Similar activities

Perintah Join SQL

Perintah Join SQL

11th Grade - University

10 Qs

PTS DMI

PTS DMI

12th Grade - University

10 Qs

MindSpace Quiz S-3

MindSpace Quiz S-3

University

15 Qs

SYS 1591

SYS 1591

University

10 Qs

Quis Bahasa Pemograman 3

Quis Bahasa Pemograman 3

University

10 Qs

Year 3 Data representation - Revision

Year 3 Data representation - Revision

3rd Grade - University

10 Qs

CSS Rules Quiz-unit 4 CodeHS

CSS Rules Quiz-unit 4 CodeHS

7th Grade - University

7 Qs

Midterm Exam IM2B

Midterm Exam IM2B

University

9 Qs

SQL JOINS

SQL JOINS

Assessment

Quiz

Computers

University

Hard

Created by

Leandro Pajaro

Used 81+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

2 mins • 5 pts

Media Image

Seleccione sentencia para listar todos los registros en los cuales num_books_read es mayor a 185

SELECT * from family_members WHERE num_books_read > 185

SELECT * family_members WHERE num_books_read > 185

SELECT * from family_members WHERE num_books_read = 185

SELECT * from family_members WHERE num_books_read >= 185

2.

FILL IN THE BLANK QUESTION

2 mins • 5 pts

Media Image

Complete la sentencia para agregar FK iddepartamento a la tabla usuarios: ALTER TABLE usuarios ___ usuarios_fk ___ REFERENCES departamentos(id)

3.

MULTIPLE CHOICE QUESTION

2 mins • 5 pts

Media Image

Seleccione sentencia para listar todos los perros con menos de 50 cm

select * from friends_of_pickles where species='dog' and height_cm > 45

select * from friends_of_pickles where species='dog' and height_cm < 45

select * from friends_of_pickles where height_cm < 45

select * from friends_of_pickles species='dog' and height_cm < 45

4.

MULTIPLE CHOICE QUESTION

2 mins • 5 pts

Media Image

Seleccione sentencia para listar el promedio de estatura por género

select gender, avg(height_cm) promedio from friends_of_pickles group by height_cm

select gender, sum(height_cm) promedio from friends_of_pickles group by gender

select gender, avg(height_cm) promedio from friends_of_pickles group by gender

select height_cm, avg(height_cm) promedio from friends_of_pickles group by gender

5.

MULTIPLE CHOICE QUESTION

2 mins • 5 pts

Media Image

Seleccione sentencia para listos los registros que sean perros o que la estatura sea inferior a 45

SELECT * FROM friends_of_pickles WHERE height_cm <45

SELECT * FROM friends_of_pickles WHERE height_cm >45 OR species = 'dog'

SELECT * FROM friends_of_pickles WHERE height_cm <45 AND species = 'dog'

SELECT * FROM friends_of_pickles WHERE height_cm <45 OR species = 'dog'

6.

FILL IN THE BLANK QUESTION

2 mins • 5 pts

Media Image

Complete la senencia para listar la cantidad de perror que hay en la tabla:

select ___ ___ friends_of_pickles where species ___

7.

FILL IN THE BLANK QUESTION

2 mins • 5 pts

Media Image

Complete la sentencia para listar la máxima y mínima estatura: SELECT ___ ___ FROM friends_of_pickles

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?