logo

Crowdly

Browser

Add to Chrome

Database & SQL Basics Lite Edition [Ukr+Eng sub, 2016]

Looking for Database & SQL Basics Lite Edition [Ukr+Eng sub, 2016] test answers and solutions? Browse our comprehensive collection of verified answers for Database & SQL Basics Lite Edition [Ukr+Eng sub, 2016] at softserve.academy.

Get instant access to accurate answers and detailed explanations for your course questions. Our community-driven platform helps students succeed!

Consider the following table named STUDENT

IDNAMEID_INSTITUTERATING
1Левицький А.I14.7 
2Стернюк У.I13.8
3Войтенко М.  
4Бабич О.I24.1

 

 

 

 

 

 and the next table INSTITUTE

IDNAME
I1Computer science
I2Mathematics
I3Physics

 

 

 

 

which have a relationship by the field ID_INSTITUTE

How many records would the following query produce

SELECT STUDENT.ID, STUDENT.NAME, INSTITUTE.NAME

FROM STUDENT, INSTITUTE

WHERE STUDENT.ID_INSTITUTE=INSTITUTE.ID

 

View this question

Consider the following table named USER

How many records will the following query will produce:

        SELECT * FROM USER WHERE NAME LIKE ‘%ivan%’ 

View this question
The NULL value means an error in the data inserted into a database table.
0%
100%
View this question
True-false question: I the HAVING section of SELECT command one can use aggregate functions
100%
0%
View this question

Consider the table named COUNTRIES:

Determinethe count of countries for each continent 

100%
0%
0%
100%
0%
View this question

Consider the STUDENT table

Calculate the result of the following query:

SELECT COUNT(*) FROM STUDENT 

View this question
Aggregate functions of SQL are:
100%
0%
100%
0%
100%
View this question

Consider the table named COUNTRIES

The following query:

SELECT CONTINENT, COUNT(COUNTRY)

FROM COUNTRIES

GROUP BY CONTINENT

HAVING SUM(POPULATION) > 300

would give us the information about: 

0%
100%
0%
0%
0%
View this question

FOREIGH KEY is one or several fields of a table that contain a reference to the primary key field in another table.

100%
0%
View this question

Consider the following table named STUDENT 

 ID NAME ID_INSTITUTERATING 
Левицький А.  
Стернюк У. I1 3.8 
Войтенко М. I2 3.5 
Бабич О. I2 4.1 

 

 

 

 

 

and the next table INSTITUTE

IDNAME
I1Computer science
I2Mathematics
I3Physics

 

 

 

 

which have a relationship by the field ID_INSTITUTE

What is the query that would produce the following result set:

NAME OF STUDENTNAME OF INSTITUTE
Левицький А.NULL
Стернюк У.Computer science
Войтенко М.Mathematics
Бабич О.Mathematics
NULLPhysics

 

 

 

  

 

View this question

Want instant access to all verified answers on softserve.academy?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!

Browser

Add to Chrome