what is SCALAR Queries?
Answers were Sorted based on User's Feedback
Answer / sreekumar
A scalar query returns exactly one column value from one row.
If it returns 0 rows, then the value scalar query is NULL. If returns more than one row, then Oracle returns an error.
eg.
select first_name, last_name,
(select job_title
from jobs
where employees.job_id = jobs.job_id) job_title
from employees
where rownum < 5;
Note :Use this method only as your last option in the coding..:) performance wise this is bad.
-Sreekumar
Oracle 10g DBA
| Is This Answer Correct ? | 2 Yes | 2 No |
Answer / tannu
Irrespective of the case, scalar query is one which always
fetch same result
| Is This Answer Correct ? | 0 Yes | 0 No |
what is the difference between sql and t-sql? : Transact sql
What are the topics in pl sql?
What are the parts of a basic sql query?
Is left join same as inner join?
Can a table contain multiple primary key’s?
How do I debug a stored procedure?
What pl/sql package consists of?
Give the structure of the function ?
What is difference between db2 and sql?
How to find last day of the month in sql query
What is cross join example?
How to write a query to show the details of a student from students table whose
Oracle (3259)
SQL Server (4518)
MS Access (429)
MySQL (1402)
Postgre (483)
Sybase (267)
DB Architecture (141)
DB Administration (291)
DB Development (113)
SQL PLSQL (3330)
MongoDB (502)
IBM Informix (50)
Neo4j (82)
InfluxDB (0)
Apache CouchDB (44)
Firebird (5)
Database Management (1411)
Databases AllOther (288)