FROM Clause in Oracle
FROM Clause in Oracle
From clause is one of the important clauses of Oracle SQL query.
It helps to retrieve data from a single table or view, multiple tables or views and in-line queries.
One table is mandatory to be mentioned in the from clause of the query.
If there are multiple tables, they are joined either using standard Oracle standards or ANSI standards.
FROM CLAUSE Syntax
SELECT * FROM…
View On WordPress











