Joining in sql, PL-SQL Programming

Assignment Help:

Joining in SQL

Joining IS_CALLED and IS_ENROLLED_ON in SQL

SELECT * FROM IS_CALLED NATURAL JOIN IS_ENROLLED_ON

This is an example of an SQL table expression. I have been assuming you are already familiar with the SELECT-FROM-WHERE structure for certain table expressions. Here an explanation in a different style from that found in the SQL text books, appealing to the concept of operator invocation.

384_Joining in SQL.png

Explanation

  • Example is an invocation of the SQL operator SELECT and for that reason I shall refer to such table expressions as SELECT expressions.
  • Here the SELECT operator operates on the table denoted by the table expression FROM IS_ CALLED NATURAL JOIN IS_ENROLLED_ON, an invocation of the operator FROM. I shall call such table expressions FROM expressions.
  • The FROM operator here is operating on the table denoted by the table expression IS_CALLED NATURAL JOIN IS_ENROLLED_ON, an invocation of the operator NATURAL JOIN.
  •  NATURAL JOIN here is operating on the tables denoted by the table expressions IS_CALLED and IS_ENROLLED_ON, each in turn denoting the table that is the current value of the variable (base table) of that name.
  • NATURAL JOIN is almost equivalent to Tutorial D's JOIN. It differs only in being noncommutative because of the ordering to the columns of an SQL table. The common columns appear first in the result, in the order in which they appear in the left operand. Then come the remaining columns of the left operand, followed by the remaining columns of the right operand. As in Tutorial D, common columns must be of the same type in both operands.
  • FROM is an operator that takes a commalist of one or more table expressions. In this example the list has just one element, IS_CALLED NATURAL JOIN IS_ENROLLED_ON, and the result is that table. An invocation of FROM is usually referred to as a FROM clause. A FROM clause is not permitted to exist in isolation-it must appear in some containing SELECT expression. Similarly, some table expressions are permitted only when they appear as elements of a FROM clause. Simple table names and invocations of NATURAL JOIN are a case in point. The result of a FROM clause must always be operated on by some other clause. In Example it is operated on by a SELECT clause. It can also be operated on by any clause that immediately follows it syntactically, such as a WHERE clause, for example. As we shall see, SQL dictates a strict order in which the clauses of a SELECT expression must appear. Evaluation always starts at the FROM clause, then proceeds forwards from clause to clause, then finally back to the SELECT clause.

Related Discussions:- Joining in sql

Using set transaction, Using SET TRANSACTION You use the SET TRANSACTI...

Using SET TRANSACTION You use the SET TRANSACTION statement to begin the read-only or read-write transaction, start an isolation level, or assign your present transaction to a

Dbms, DBMS: The answer to this question is of course given in of the t...

DBMS: The answer to this question is of course given in of the theory book. This book is concerned with SQL DBMSs and SQL databases in particular. Soon we will be looking a

Special cases of projection, Special cases of projection This section ...

Special cases of projection This section describes the identity projection, r {ALL BUT}, and the projection on no attributes, r { }, which yields TABLE_DUM when r is empty, ot

Need for dynamic sql - pl sql , Need for Dynamic SQL: You need dynamic...

Need for Dynamic SQL: You need dynamic SQL in the situations as follows: 1) You would like to execute a SQL data definition statement (like CREATE), a data control statemen

Effects of null in aggregate operator - sql, Effects of NULL in Aggregate O...

Effects of NULL in Aggregate Operator - SQL Let aggop(x) be an invocation of some aggregate operator aggop in SQL, where x is an expression (usually an open expression) to be

Overview of control structures-comparison operators, Overview of control st...

Overview of control structures According to the structure theorem, any computer program can be written by using the basic control structures as shown in figure below. They can b

Inner join, Inner Join We have learned how to retrieve data from one t...

Inner Join We have learned how to retrieve data from one table by using SELECT statement. But, as we have learned, normalized relational databases mean the data is spread betw

Pass the nulls to a dynamic sql, Pass the nulls to a dynamic SQL: Pas...

Pass the nulls to a dynamic SQL: Passing Nulls: Assume that you want to pass the nulls to a dynamic SQL statement. For illustration, you may write the EXECUTE IMMEDIATE

Example of table literal - sql, Example of Table Literal - SQL Exampl...

Example of Table Literal - SQL Example: A Table Literal (correct version) VALUES ('S1', 'C1', 'Anne'), ('S1', 'C2', 'Anne'), ('S2', 'C1', 'Boris'), ('S3', 'C3'

%type - cursors, %TYPE: This attribute gives the datatype of a formerly...

%TYPE: This attribute gives the datatype of a formerly declared collection, cursor variable, object, field, record, database column, or variable. Datatype: This is simply

Write Your Message!

Captcha
Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd