Thursday, January 19, 2023

Database Management System 1 (ORACLE)

IT 6202 Database Management System 1 (ORACLE)


A statement that is use to rename the table or change the existing name of the table.

Rename

A system used to concatenate one column to another column.

||

A type of DML statement that is use to update existing rows in a table.

UPDATE

A type of DML statement that is use to add new rows in a table.

INSERT

A type of DML statement that is use to remove existing rows in a table.

DELETE

A type of insert statement that specify the NULL keyword in the VALUES clause.

Explicit

An alter statement that is used to add new column to the table.

ADD

An alter statement that is used to delete an existing column in the table.

DROP

An alter statement that is used to update an existing column datatype or datatype size.

MODIFY

Basic unit of storage composed of rows and columns

Table

Choose the letter of the correct answer based on the table EMPLOYEES as shown below.

Table 1.0 EMPLOYEESBased on the given SELECT statement below what would be the possible output? SELECT

 

(LASTNAME||FIRSTNAME), JOB_IDFROM EMPLOYEESWHERE SUBSTR (JOB_ID,4)=E2=80=99REP=E2=80=99;

ABELELLEN

SA_REPTALORJONATHAN

SA_REPGRANTKIMBERLY

SA_REPFAYPAT

MK_REP

Choose the letter of the correct answer based on the table EMPLOYEES as shown below.Table 1.0 EMPLOYEESBased on the given SELECT statement below what would be the possible output?SELECT FIRSTNAME, SALARY, LPAD(SALARY * 0.10 + SALARY =E2=80=93 100, 8, =E2=80=98$=E2=80=99) AS BONUSFROM EMPLOYEESWHERE DEPARTMENT_ID NOT IN (10, 110, 50AND SALARY=17000;

NENA

17000

$$$18600LEX

17000

$$$18600

Choose the letter of the correct answer based on the table EMPLOYEES as shown below.Table 1.0 EMPLOYEESBased on the given SELECT statement below what would be the possible output?SELECT INITCAP(LASTNAME||=E2=80=99,=E2=80=99||FIRSTNAME) AS NAMEFROM EMPLOYEESWHERE JOB_ID LIKE =E2=80=99%PR%=E2=80=99;

King,StevenHunold,AlexanderErnst,BruceLorentz,Diana

Choose the letter of the correct answer based on the table EMPLOYEES as shown below.Table 1.0 EMPLOYEESBased on the given SELECT statement below what would be the possible output?SELECT LASTNAME,SALARY, RPAD(SALARY,4,=E2=80=99@=E2=80=99)FROM EMPLOYEESWHERE SALARY BETWEEN 4000 AND 9000LASTNAME LIKE =E2=80=98%S=E2=80=99;

MOURGOS

5800

5800

Choose the letter of the correct answer based on the table EMPLOYEES as shown below.Table 1.0 EMPLOYEESBased on the given SELECT statement below what would be the possible output?SELECT LOWER(LASTNAME||=E2=80=99with a salary of=E2=80=99||SALARY) as Record, LENGTH(LASTNAME) as LnameFROM EMPLOYEESWHERE MANAGER_ID IS NULLOR SALARY IS NULL;

kingwith a salary of 24000

4hunoldwith a salary of 2400

6

Choose the letter of the correct answer based on the table EMPLOYEES as shown below.Table 1.0 EMPLOYEESBased on the given SELECT statement below what would be the possible output?SELECT MOD(SALARY,10) AS =E2=80=9CEXCESS SALARY=E2=80=9DFROM EMPLOYEESWHERE SALARY < 5000;

000000

Choose the letter of the correct answer based on the table EMPLOYEES as shown below.Table 1.0 EMPLOYEESBased on the given SELECT statement below what would be the possible output?SELECT TRIM(=E2=80=98K=E2=80=99 FROM LASTNAME)AS TRIM, LASTNAME, DEPARTMENT_ID, MANAGER_IDFROM EMPLOYEESWHERE DEPARTMENT_ID = 50AND MANAGER_ID = 100;

MOURGOS

MOURGOS

50

100

Choose the letter of the correct answer based on the table EMPLOYEES as shown below.Table 1.0 EMPLOYEESBased on the given SELECT statement below what would be the possible output?SELECT TRUNC(563.396,-2) FROM DUAL;

500

Choose the letter of the correct answer based on the table EMPLOYEES as shown below.Table 1.0 EMPLOYEESBased on the given SELECT statement below what would be the possible output?SELECT TRUNC(563.396,1)FROM DUAL;

5633

Choose the letter of the correct answer based on the table EMPLOYEES as shown below.Table 1.0 EMPLOYEESBased on the given SELECT statement below what would be the possible output?SELECT TRUNC(563.396,2)FROM DUAL;

56339

Choose the letter of the correct answer based on the table EMPLOYEES as shown below.Table 1.0 EMPLOYEESWhat query should be used in order to display the employees lastname concatenated to salary. Format the salary column to 6 character long right padded with =E2=80=98*=E2=80=99 as special character for all employees whose manager_id is null or salary between 4000 and 6000 Rename the column as employees and their Salaries

SELECT (FIRSTNAME||RPAD(SALARY,6,'*')) AS "EMPLOYEES AND THEIR SALARIES"FROM EMPLOYEESWHERE MANAGER_ID IS NULLOR SALARY BETWEEN 4000 AND 6000;

Choose the letter of the correct answer based on the table EMPLOYEES as shown below.Table 1.0 EMPLOYEESWhat query should be used in order to display the employees lastname concatenated with firstname and with a =E2=80=98, (comma)=E2=80=99 in between. A rename on the concatenated column as Complete Name. Note all values in Complete Name column should be in lowercase plus display the length of employees lastname for all employees whose lastname starts with letter M sort the lastname in its default order.

SELECT LOWER(LASTNAME||','||FIRSTNAME) AS "COMPLETE NAME",LENGTH(LASTNAME)FROM EMPLOYEESWHERE LASTNAME LIKE 'M%';

Choose the letter of the correct answer based on the table EMPLOYEES as shown below.Table 1.0 EMPLOYEESWhat query should be used in order to display the firstname concatenated to salary with additional column salary that provides a computation of salary * 2. Rename the column as Increase of all employees whose lastname ends with N.

SELECT (FIRSTNAME || 'SALARY OF' || SALARY || 'IF MULITPLY BY TWO THEN HE/SHE WLL GOT A NEW SALARY OF' || SALARY * 2)AS INCREASE FROM EMPLOYEES WHERE LASTNAME LIKE '%N';

Choose the letter of the correct answer based on the table EMPLOYEES as shown below.Table 1.0 EMPLOYEESWhat query should be used in order to display the lastname and salary of all employees whose department_id = 60 or job_id like =E2=80=98_T%=E2=80=99. Format the salary to be 15 character long, left padded with =E2=80=98$=E2=80=99 as special character. Label the column Salary.

SELECT LASTNAME, LPAD(SALARY,15,'$') AS SALARYFROM EMPLOYEESWHERE DEPARTMENT_ID = 60 OR JOB_ID LIKE '_T';

Choose the letter of the correct answer based on the table EMPLOYEES as shown below.Table 1.0 EMPLOYEESWhat query should be used in order to display the salary leftpadded with 15 character long and =E2=80=98$=E2=80=99 as special character and another column salary right padded with 10 character long with =E2=80=98@=E2=80=99 as special character used of all employees in 201, 176 and 144.

SELECT LPAD(SALARY,15,'$'), RPAD(SALARY,10,'@')FROM EMPLOYEESWHERE EMPLOYEE_ID IN (201,176,144);

Choose the letter of the correct answer based on the table EMPLOYEES as shown below.Table 1.0 EMPLOYEESWhat query should be used in order todisplay a report that trim the letter =E2=80=98A=E2=80=99 from lastname of all employees whose department_id between 60 and 90.

SELECT TRIM('A' FROM LASTNAME)FROM EMPLOYEESWHERE DEPARTMENT_ID BETWEEN 60 AND 90;

Choose the letter of the correct answer based on the table EMPLOYEES as shown below.Table 1.0 EMPLOYEESWhat query should be used in order todisplay the firstname and length of firstname rename the column length of firstname as Number of Character of all employees whose salary is between 4400 and 8300

SELECT FIRSTNAME, LENGTH(FIRSTNAME) AS "NUMBER OF CHARACTER"FROM EMPLOYEESWHERE SALARY BETWEEN 4400 AND 8300;

Choose the letter of the correct answer based on the table EMPLOYEES as shown below.Table 1.0 EMPLOYEESWhat query should be used in order todisplay the Firstname concatenated to employees original salary plus concatenate again a new column salary that multiplies the original salary into three. Rename the column as Dream Salaries.Note sort the salary in descending order.

SELECT (FIRSTNAME||' EARNS '|| SALARY || 'MONTHLY BUT WANTS' || SALARY * 3)AS "DREAM SALARIES"FROM EMPLOYEESORDER BY SALARY DESC;

Choose the letter of the correct answer based on the table EMPLOYEES as shown below.Table 1.0 EMPLOYEESWhat query should be used in order todisplay the firstname in capitalized format rename the column as pangalan whose job_id is equal to =E2=80=98SA_REP=E2=80=99.

SELECT UPPER(FIRSTNAME) AS PANGALANFROM EMPLOYEESWHERE JOB_ID = 'SA_REP';

Choose the letter of the correct answer based on the table EMPLOYEES as shown below.Table 1.0 EMPLOYEESWhat query should be used in order toget theSUBSTR  function that returns the job_id = =E2=80=98REP=E2=80=99.

SELECT JOB_ID FROM EMPLOYEESWHERE SUBSTR(JOB_ID,4)='REP';

Choose the letter of the correct answer based on the table EMPLOYEES as shown below.Table 1.0 EMPLOYEESWhich of the following is the correct query that counts the number of ST_CLERK job_id? Rename the column as =E2=80=9CTotal no. of ST_CLERK=E2=80=9D.

SELECT COUNT(JOB_ID), AS =E2=80=9CTOTAL NO OF ST_CLERK=E2=80=9DFROM EMPLOYEESWHERE JOB_ID = =E2=80=98ST_CLERK=E2=80=99;

Choose the letter of the correct answer based on the table EMPLOYEES as shown below.Table 1.0 EMPLOYEESWhich of the following is the correct query that display the Job_id and add the ff: function:Count the total number of job_id per distinct values; Compute for the summary of salary per job_id; and Compute for the average salary per job_id

SELECT DISTINCT(JOB_ID), COUNT(JOB_ID) AS =E2=80=9CNO OF JOB_ID=E2=80=9D, SUM(SALARY) AS =E2=80=9CTOTAL SALARY=E2=80=9D, AVG(SALARY) AS =E2=80=9CAVERAGE SALARY=E2=80=9D FROM EMPLOYEES GROUP BY JOB_ID;

Choose the letter of the correct answer based on the table EMPLOYEES as shown below.Table 1.0 EMPLOYEESWhich of the following is the correct query that display the maximum lastname concatenated to firstname and rename the column as =E2=80=9CEmployees Name=E2=80=9D, Job_id and apply the ff. functions:Count the Job_id; Apply where condition whose lastname ends with letter =E2=80=98N=E2=80=99; Group the job_id; and Apply having clause of employees having average salary that is greater than 10000.

SELECT MAX(LASTNAME||FIRSTNAME) AS "EMPLOYEES NAME", JOB_ID, COUNT(JOB_ID)FROM EMPLOYEESWHERE LASTNAME LIKE '%N'GROUP BY JOB_IDHAVING AVG(SALARY)>10000;

Choose the letter of the correct answer based on the table EMPLOYEES as shown below.Table 1.0 EMPLOYEESWhich of the following is the correct query that display the Minimum firstname concatenated to lastname? Look for the maximum salary that is less than 10000 per department_id.

SELECT MIN(FIRSTNAME||LASTNAME)FROM EMPLOYEESGROUP BY DEPARTMENT_IDHAVING MAX(SALARY)<10000;

Choose the letter of the correct answer based on the table EMPLOYEES as shown below.Table 1.0 EMPLOYEESWhich of the following is the correct query that displays the lowest salary rename as =E2=80=9CLOWEST SALARY=E2=80=9D, maximum salary rename as =E2=80=9CHIGHEST SALARY=E2=80=9D and department_id concatenated to job_id?

SELECT CONCAT(DEPARTMENT_ID,JOB_ID),MIN(SALARY), MAX(SALARY)FROM EMPLOYEESGROUP BY JOB_ID,DEPARTMENT_ID;

Choose the letter of the correct answer based on the table EMPLOYEES as shown below.Table 1.0 EMPLOYEESWhich of the following is the correct query that displays the maximum salary?

SELECT MAX(SALARY) FROM EMPLOYEES;

Choose the letter of the correct answer based on the table EMPLOYEES as shown below.Table 1.0 EMPLOYEESWhich of the following is the correct query that displays the minimum lastname?

SELECT MIN(LASTNAME) FROM EMPLOYEES;

Choose the letter of the correct answer based on the table EMPLOYEES as shown below.Table 1.0 EMPLOYEESWhich of the following is the correct query that displays the MINIMUM salary of employees per job_id? Note job_id should be in lowercase.

SELECT MIN(SALARY) AS =E2=80=9CLOWEST SALARY=E2=80=9D, LOWER(JOB_ID)FROM EMPLOYEESGROUP BY JOB_ID;

Choose the letter of the correct answer based on the table EMPLOYEES as shown below.Table 1.0 EMPLOYEESWhich of the following is the correct report that display the smallest (minimum) Surname.. and apply the ff. functions:Get the average salary; Group the data per job_id; Get only job_id with a keyword =E2=80=9CREP=E2=80=9D; and Apply having clause, which the max salary per job_id is greater than 5000.

SELECT MIN(LASTNAME), AVG(SALARY)FROM EMPLOYEESWHERE JOB_ID LIKE =E2=80=98%REP%=E2=80=99GROUP BY JOB_IDHAVING MAX(SALARY)>500;

Choose the letter of the correct answer based on the table EMPLOYEES as shown below.Table 1.0 EMPLOYEESWhich of the following is the correct that display distinct job_id and the the total number per distinct (unique) job_id.

SELECT DISTICT(JOB_ID), COUNT(JOB_ID) AS =E2=80=9CTOTAL NUMBER OF JOB_ID=E2=80=9DFROM EMPLOYEESGROUP BY JOB_ID;

Consists of a collection of DML statements that form a logical unit of work.

Transaction

Extracts a string of determined length.

SUBSTR

Given the output below. Which of the following is the correct PL/SQL to be used

SELECT DISTINCT WAREHOUSE FROM PARTS;

Given the output below. Which of the following is the correct PL/SQL to be used?

SELECT DESCRIPTION, ONHAND,CLASSFROM PARTSWHERE CLASS = =E2=80=98HW=E2=80=99;

He proposed the relational model for database systems in 1970.

Dr EF Codd

It is a character, a number, or a date that is included in the SELECT statement.

Literal

It is a collection of relations or two-dimensional tables controlled by the Oracle server.

Relational database

It is a table that is owned by the user SYS and can be accessed by all users.

Dual

It is a value that is unavailable, unassigned, unknown, or inapplicable.

NULL

It is use to accept numeric input and return numeric values.

Number function

It logically represents subsets of data from one or more table.

View

Refer to table 1.0 Using the SELECT statement below what would be the possible output:SELECT NAME, ORG, POSITION, ID * (100 + 3)FROM ORGCHARWHERE ORG = =E2=80=98AMATHS=E2=80=99

It will retrieve the record of ANNA with new ID of 1030

Refer to table 1.0 Using the SELECT statement below what would be the possible output:SELECT NAME, ORG, POSITIONFROM ORGCHARWHERE NAME LIKE =E2=80=98%A=E2=80=99;

It retrieves the record of ANNA and MOJICA

Refer to table 1.0 Using the SELECT statement below what would be the possible output:SELECT NAME, ORG, POSITIONFROM ORGCHARWHERE NAME LIKE =E2=80=98A%=E2=80=99AND POSITION = =E2=80=98SEC=E2=80=99;

It retrieves the record of AGAPITO

Refer to table 1.0 Using the SELECT statement below what would be the possible output:SELECT NAME, ORG, POSITIONFROM ORGCHARWHERE ORG =E2=80=99JPCS=E2=80=99OR POSITION = =E2=80=98SEC=E2=80=99;

It will retrieve the record of JOAN,ROAN and JUN

Refer to table 1.0 Using the SELECT statement below what would be the possible output:SELECT NAME, ORG, POSITIONFROM ORGCHARWHERE ORG =E2=80=99JPCS=E2=80=99OR POSITION = =E2=80=98SEC=E2=80=99AND NAME LIKE =E2=80=98%N=E2=80=99;

It will retrieve the record of JOAN,ROAN and JUN

Refer to table 1.0, suppose that user insert the following values using the statement below what would be the possible output?INSERT INTO ORGCHART (ID, NAME)VALUES (11,=E2=80=99YAMBAO,JUN=E2=80=99);

The ORG and POSITION of YAMBAO will automatically sets to NULL

Refer to table 1.0, suppose that user insert the following values using the statement below what would be the possible output?INSERT INTO ORGCHART VALUES (11,=E2=80=99YAMBAO,JUN=E2=80=99, NULL, NULL);

The ORG and POSITION of YAMBAO will automatically sets to NULL

Refer to table 1.0, suppose that user update the table using the statement below what would be the possible output?UPDATE ORGCHARTSET ORG = =E2=80=98PCS=E2=80=99WHERE ORG IS NULL;

1 row/s is updated

Suppose that a user uses the DELETE statement as shown below: what is/are the possible output. DELETE from STUDENT;

All rows are deleted but the table is still intact

Suppose that a user wanted to add a new column name as CITY datatype set to char size 10. Which of the following is the correct sql statement?

ALTER TABLE STUDENTSADD CITY CHAR(10);

Suppose that a user wanted to change the datatype of column ADDRESS from Varchar to Char which of the following is the correct example.

ALTER TABLE STUDENTSMODIFY ADDRESS VARCHAR(20);

Suppose that a user wanted to insert a new value using the explicit method which of the following is the correct example.

INSERT INTO STUDENTS VALUES (10, NULL,=E2=80=99ELENA=E2=80=99,NULL);

Suppose that a user wanted to insert a new value using the implicit method which of the following is the correct example.

INSERT INTO STUDENST(USN_ID, FIRSTNAME)VALUES(10,=E2=80=99ELENA=E2=80=99)

Suppose that the user wanted to add a new column name as CUST_NAME data type char size 6. What is the correct SQL statement to use?

ALTER TABLE PARTSADD CUST_NAME CHAR(6);

Suppose that the user wanted to add a new column name as CUST_NAME data type char size 6. What is the correct type of statement to use?

ALTER

Supposed that the user uses the ff SELECT statement: what will be the possible output.SELECT GRADE AS STUDENT MARK FROM GRADE_REPORT;

Error because of missing =E2=80=9C=E2=80=9D mark

This character is used to override the default precedence or to clarify the statement.

( )

This is use to accept character input and can return both character and number values.

Character function

This is use to create expression with number and date values.

Arithmetic expression

This is use to find the numeric position of a named character starting at character position n.

INSTR

This is use to return one result per group of row.

Multiple row

This is use to return one result per row.

Single row

This is use to Selects the columns in a table that are returned by a query. Selects a few or as many of the columns as required.

Projection

Which of the following query is correct which will display the same output as shown below?

SELECT COUNT(DISTINCT MANAGER_ID) AS "NO OF MANAGER_ID" FROM EMPLOYEES

Which of the following is the correct example updating the student LASTNAME TO =E2=80=98SANTOS=E2=80=99 and course to =E2=80=98BSCS=E2=80=99 whose STUD_ID is equal to 109?

UPDATE EMPLOYEESSET LASTNAME = =E2=80=98SANTOS=E2=80=99, COURSE = =E2=80=98BSCS=E2=80=99WHERE STUD_ID = 109;

Which of the following is the correct example updating all student COURSE to =E2=80=98BSIT=E2=80=99 from STUDENTS table?

UPDATE STUDENTSSET COURSE = =E2=80=98BSIT=E2=80=99;

Which of the following is the correct example of updating the LASTNAME to =E2=80=98REYES=E2=80=99 of all students from STUDENTS table whose STUD_ID is equal to 01020564?

UPDATE STUDENTSSET LASTNAME = =E2=80=98REYES=E2=80=99WHERE STUD_ID = 01020564;

Which of the following is the correct example of updating the COURSE to =E2=80=98N/A=E2=80=99 of all students from STUDENTS table whose course IS NULL;

UPDATE STUDENTSSET COURSE = =E2=80=98N/A=E2=80=99WHERE COURSE IS NULL;

Which of the following is the correct example of truncating the table EMPLOYEES?

TRUNCATE TABLE EMPLOYEES;

Which of the following is the correct example of renaming the table EMPLOYEES to WORKERS?

RENAME EMPLOYEES TO WORKERS;

Which of the following is the correct example of removing a column SALARY from EMPLOYEES table?

ALTER TABLE EMPLOYEESDROP COLUMN SALARY;

Which of the following is the correct example of removing a column FIRSTNAME from EMPLOYEES table?

ALTER TABLE EMPLOYEESDROP COLUMN FIRSTNAME;

Which of the following is the correct example of modifying the column lastname? Change the datatype size to 20.

ALTER TABLE EMPLOYEESMODIFY LASTNAME VARCHAR(20);

Which of the following is the correct example of modifying the column JOB_ID? Change the datatype size to 10.

ALTER TABLE EMPLOYEESMODIFY JOB_ID CHAR(10);

Which of the following is the correct example of inserting new values to STUDENTS table?

INSERT INTO STUDENTS VALUES(1,'DELA CRUZ','JUANITO','BSIT');

Which of the following is the correct example of inserting new values to STUDENTS table where the course is set to NULL;

INSERT INTO STUDENTS VALUES(1,'DELA CRUZ','JUANITO',NULL);

Which of the following is the correct example of dropping the table EMPLOYEES?

DROP TABLE EMPLOYEES;

Which of the following is the correct example of deleting all records in STUDENTS table;

DELETE FROM STUDENTS;

Which of the following is the correct example of deleting a student record from STUDENTS table whose COURSE is equal to NULL;

DELETE FROM STUDENTSWHERE COURSE IS NULL;

Which of the following is the correct example of creating a new table STUDENTS? The column STUD_ID is set to primary key.

CREATE TABLE STUDENTS( STUD_ID NUMBER(3) PRIMARY KEY);

Which of the following is the correct example of adding a new column CONTACT_NOdatatypeNUMBER size 11 to EMPLOYEES table?

ALTER TABLE EMPLOYEESADD CONTACT_NO NUMBER(11);

Which of the following is the correct example of adding a new column ADDRESS datatypevarchar size 20 to EMPLOYEES table?

ALTER TABLE EMPLOYEESADD ADDRESS VARCHAR(20);

Which of the following is the correct example inserting a new value to STUDENTS table that will only add new data to STUD_ID and LASTNAME? The stud_id is 10 and lastname is =E2=80=98CRUZ=E2=80=99

INSERT INTO STUDENTS(STUD_ID,LASTNAME)VALUES(10,=E2=80=99CRUZ=E2=80=99);

Which of the following is the correct example inserting a new value to STUDENTS table that will only add new data to STUD_ID and LASTNAME? The stud_id is 10 and lastname is 'CRUZ' and the rest of the column is set to NULL.

INSERT INTO STUDENTS VALUES (10,'CRUZ',NULL,NULL);

 

Which of the following is not true about writing SQL statements?

SQL statements are case sensitive

Which of the following is not true about ALTER statement?

Insert new row in a table

Which of the following is not the correct example of entity?

Phone_no

Which of the following is not part of transaction control?

CREATE

Which of the following is not part of other Comparison Operator?

<> 

Which of the following is not part of handling data?

Semi-Computerized

Which of the following is not part of DML statement?

CREATE table

Which of the following is not part of disadvantage of database?

Data integrity

Which of the following is not part of DDL statement?

DELETE

Which of the following is not part of data manipulation language?

Alter

Which of the following is not part of data control language?

Insert

Which of the following is not part of common Comparison operator?

LIKE

Which of the following is not part of characteristics of database?

Data Processing

Which of the following is not part of basic SELECT statement

Logical condition

Which of the following is not part of advantage of database?

Database instance

Which of the following datatype is not being used in oracle?

INT

What is the return value if the user try to do the following:SELECT TRUNC (65.73,-2) FROM DUAL;

0

Trims leading or trailing characters (or both) from a character string.

Trim

This is used to test for values in a specified set of values.

IN

This is used to selects the rows in a table that are returned by a query. Various criteria can be used to restrict the rows that are retrieved.

Selection

This is used to restrict the rows that are returned by a query.

Where

This is used to perform wildcard searches of valid search string values.

Like

This is used to in conditions that compare one expression with another value or expression.

Comparison

This is used to display rows based on a range of values.

Between

This is used to converts the first letter of each word to uppercase and the remaining letters to lowercase.

INITCAT

This is used to brings together data that is stored in different tables by specifying the link between them.

Joins


No comments:

Post a Comment