answersLogoWhite

0

temp table

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

What is hash key?

hash key is an element in the hash table. it is the data that you will combine (mathematical) with hash function to produce the hash.


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 the major advantage of a hash table?

The major advantage of a hash table is its speed. Because the hash function is to take a range of key values and transform them into index values in such a way that the key values are distributed randomly across all the indices of a hash table.


What is the optimal hash table size for achieving efficient performance when dealing with prime numbers?

The optimal hash table size for efficient performance when dealing with prime numbers is typically a prime number that is close to but not exceeding the desired capacity of the hash table. This helps reduce collisions and ensures a more even distribution of values across the table, leading to better performance.


With SQL how can you delete the records where the FirstName is Peter in the Persons Table?

To delete records where FirstName is Peter in the Persons Table, you can use the following SQL query: DELETE FROM Persons WHERE FirstName = 'Peter';


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";


What is the maximum number of characters allowed in a table alias in sql?

30


Which of the following do you need to consider when you make a table in SQL?

Data types


Can you transfer the record of one table to other table using sql query?

Yes Insert into table a Select * from table b Where [limit your data set]