answersLogoWhite

0

What else can I help you with?

Related Questions

What is a grid control in aspnet?

Grid control is used to display/edit/Delete/insert rows of records


How do you delete the duplicate records in sqlserver?

follow these steps if your duplicate records are excatly same: suppose mytable is your table which have duplicates records select distinct * into NewTable from MyTable delete mytable insert into mytable select * from NewTable select * from MyTable drop NewTable


How do you add or delete records to a database table?

It depends on the database, but most use some version of something called "structured query language" or SQL, and in that the normal command for adding a record is INSERT while the command for deleting records is DELETE. Look those up in the documentation for your particular database to find the exact syntax it's expecting.


What are the database transactions types?

Insert, Update, Delete


To insert delete or replace text is to the document?

It is to Edit


What will someone who uses the database need to be able to do?

A user of a database will typically need one or or more of the following permissions: "create" (insert new records), "read" (query existing records), "update" (modify existing records), and "delete" (remove existing records). Databaseadministratorswill typically have additional permissions, such as creating, modifying, and removing tables.


Which cursor attribute provides you with the number of records affected by the last DML statement?

The cursor attribute that provides the number of records affected by the last DML statement is %ROWCOUNT. This attribute is used in PL/SQL to return the number of rows manipulated by the most recent SQL DML operation, such as INSERT, UPDATE, or DELETE. It allows you to easily determine the impact of your DML execution within your PL/SQL block.


How to grant write permissions to a user in a database?

To grant write permissions to a user in a database, you can use SQL commands like GRANT INSERT, UPDATE, and DELETE privileges on specific tables or databases. This allows the user to add, modify, and delete data in the database.


How do you delete a Pokemon on a pokewalker?

You don't delete. You can switch, though. Easily insert the pokewalker into the DS and change the settings.


What is the difference between bulk collect and for all in oracle 8i and 9i?

Bulk collect: is a CLAUSE. is used to fetch the records from the cursor. Forall: is a STATEMENT. is used to do dml operation of fetched records. The body of the FORALL statement is a single DML statement -- an INSERT, UPDATE, or DELETE.


What is Manipulate Language?

DML is a subset of SQL (Structured Query Language) that is used to insert, delete and revise records (or 'tuples') in a relational database. The precise definition of DML varies considerably with the database system with which it is associated.


How do you add records to a database?

Records are added in databases using "insert into tablename values(.....,..'...');