answersLogoWhite

0


Best Answer

kya bhai mere ko pata hota to tumse puchata kya.......................

User Avatar

Wiki User

12y ago
This answer is:
User Avatar
More answers
User Avatar

AnswerBot

1w ago

A subquery in DBMS is a query nested within another query. It is a way to retrieve data that depends on the result of another query. Subqueries can be used in a variety of ways, such as filtering, joining, or defining a derived table.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is subquery in dbms?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Information Science

What are three types of dbms?

Three types of DBMS (Database Management Systems) include relational DBMS, object-oriented DBMS, and NoSQL DBMS. Relational DBMS organizes data into tables with rows and columns, object-oriented DBMS stores data as objects and classes, and NoSQL DBMS handles unstructured and semi-structured data with flexible schemas.


What is the fullform of DBMS?

The full form of DBMS is Database Management System.


Dbms and rdbms?

A DBMS (Database Management System) is a software application that allows users to interact with a database. An RDBMS (Relational Database Management System) is a type of DBMS that organizes data into tables with rows and columns, and uses structured query language (SQL) for querying and managing data. RDBMSs are a subset of DBMSs, designed specifically for relational databases.


What is the difference between flat file and DBMS?

A flat file is a simple file containing data without any structured format, while a Database Management System (DBMS) is a software system that manages databases by organizing, storing, and retrieving data. A DBMS allows for more organized and efficient data management, supports relationships between data, and provides features like security and data integrity that are not available with flat files.


Mention 3 situations where it is not desirable to use dbms?

For small-scale projects with minimal data storage requirements, using a DBMS may introduce unnecessary complexity and overhead. In scenarios with strict real-time constraints or extreme performance requirements, the additional processing time involved in interacting with a DBMS may not be acceptable. When the data is highly unstructured or varies significantly in format, a DBMS may not be the most efficient or effective storage solution.

Related questions

What is a correlated query?

Correlated query has a subquery in it which accesses the column name of a table alias which is outside the subquery.


What are subqueries used for in a database?

A subquery is basically a query inside another query. Sometimes a main query needs to process data that is the result of another query. To extract that data a subquery could be built into a field in a main query. This is known as a subquery.A subquery is basically a query inside another query. Sometimes a main query needs to process data that is the result of another query. To extract that data a subquery could be built into a field in a main query. This is known as a subquery.A subquery is basically a query inside another query. Sometimes a main query needs to process data that is the result of another query. To extract that data a subquery could be built into a field in a main query. This is known as a subquery.A subquery is basically a query inside another query. Sometimes a main query needs to process data that is the result of another query. To extract that data a subquery could be built into a field in a main query. This is known as a subquery.A subquery is basically a query inside another query. Sometimes a main query needs to process data that is the result of another query. To extract that data a subquery could be built into a field in a main query. This is known as a subquery.A subquery is basically a query inside another query. Sometimes a main query needs to process data that is the result of another query. To extract that data a subquery could be built into a field in a main query. This is known as a subquery.A subquery is basically a query inside another query. Sometimes a main query needs to process data that is the result of another query. To extract that data a subquery could be built into a field in a main query. This is known as a subquery.A subquery is basically a query inside another query. Sometimes a main query needs to process data that is the result of another query. To extract that data a subquery could be built into a field in a main query. This is known as a subquery.A subquery is basically a query inside another query. Sometimes a main query needs to process data that is the result of another query. To extract that data a subquery could be built into a field in a main query. This is known as a subquery.A subquery is basically a query inside another query. Sometimes a main query needs to process data that is the result of another query. To extract that data a subquery could be built into a field in a main query. This is known as a subquery.A subquery is basically a query inside another query. Sometimes a main query needs to process data that is the result of another query. To extract that data a subquery could be built into a field in a main query. This is known as a subquery.


What are co related sub queries?

The main differencre between subquery and co-related subquery is that in subquery child query is executed first n then parent,but in co-related subquery main query is executed first(even though parenthesis are present) and then child query. Example of co-related subquery select dname from dept where exists (select deptno from emp where dept.deptno=emp.deptno); select dname from dept where not exists (select deptno from emp where dept.deptno=emp.deptno);


What is the difference between JOIN and Subquery?

A join will join two or more tables together by a field related to both tables (ie, relationship of primary and foreign keys). It is typically easy to understand. A subquery statement involves a SELECT statement that selects particular values from a table. The values that the select query selects is dependant upon the subquery. The subquery itself is another SELECT statement.


An SQL subquery can appear inside of another SQL subquery?

Yes, but more the levels of sub queries, the more would be the time taken to execute the query.


What are highlights of DBMS?

NA_ what are highlights of advanced DBMS what are highlights of advanced DBMS what are highlights of advanced DBMS


Which construct in SQL is used to test whether a subquery has any tuples in its result?

Exists


Is java DBMS?

no, Java is not dbms.. Java is a programming language Dbms is database


Is SQL DBMS or RDBMS?

dbms


What are three types of dbms?

Three types of DBMS (Database Management Systems) include relational DBMS, object-oriented DBMS, and NoSQL DBMS. Relational DBMS organizes data into tables with rows and columns, object-oriented DBMS stores data as objects and classes, and NoSQL DBMS handles unstructured and semi-structured data with flexible schemas.


Can you use subquery in values clause of an insert statement?

Yes INSERT INTO your_table (col1, col2, col3) VALUES (1, 'a string', (SELECT TOP 1 empName FROM Employees)) Tested just now. Just make sure your subquery returns a single datum.


What are rows in dbms?

In DBMS the data is stored in the form of table . Each row in DBMS is known as tuple.