answersLogoWhite

0


Best Answer

Trigger.

User Avatar

Wiki User

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

AnswerBot

1w ago

A SQL virtual table is called a "view". Views are virtual tables that contain the result set of a SELECT query and can be used to simplify complex queries or provide a layer of abstraction over the underlying tables.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is a sql virtual table called?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Create view in SQL?

create view vw_active_employee as select * from employee where status = 'Active' after creating the view, view can be used as a table to see active employee. e.g. select * from vw_active_employee Basically we save sql as a database object, so that we can use that in future as a virtual table.


What is hash table in sql?

temp table


What is the name of two DDL operations in SQL?

Some of the operations performed in DDL in sql are creation of table,alteration of table,truncate a table, drop a table


What is virtual function table?

A virtual function table is a table of pointers to functions.


What is the different between a view and a create view?

View is a virtual table that do not have any data of its own but have data that is derived from another table called base table. Create view is the command used to create a view (virtual table).


What is the function of a Foreign Key in SQL?

A Foreign Key in SQL is used to establish a relationship between two tables. It ensures referential integrity by enforcing that values in a column (or columns) in one table must match the values in a primary key in another table. This helps maintain consistency and data integrity across linked tables.


How a primary key is fixed in a sql table?

A primary key field in a sql table is created using the PRIMARY KEY keyword. ex: CREATE TABLE tbl_employee ( emp_num VARCHAR(10), emp_name VARCHAR(100), PRIMARY KEY (emp_num)) The above script creates a table called tbl_employee and sets the emp_num field as the primary key


Does a new table exist after joins in sql?

no. a new table does not exist after a join command. All that is doing is temporarily pulling the data from the tables. If this command was one that you would want to do often, you can create a VIEW, which is a virtual table. It is an object that pulls data from one or more tables based on your search criteria.


What does SQL CREATE VIEW achieve?

SQL CREATE VIEW achieves the creation of a table or tables in the SQL database. One can then create tables to the purpose they desire and fill them in with information.


How do you join a table to itself in sql?

using aliases: SELECT a.some_fields, b.other_fields FROM table a, table b WHERE a.foreign_key=b.primary_key;


In VB.NET what method is used to modify a table?

SQL UPDATE statement is used to modify a record in a table.


How do you retrieve data from table in sql by selecting month?

select * from "table-name" where month="required month";