answersLogoWhite

0


Best Answer

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.

User Avatar

Wiki User

9y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you add or delete records to a database table?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Basic Math
Related questions

How do you add records to a database?

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


Can you add new columns to a database after creating the structure?

Columns are added to a table, not a database (which is a collection of tables). Adding a column to a table is achieved by using the Alter Table SQL command.


Difference between alter and update commands in sql?

Update and Alter are two SQL (Structured Query Language) commands used for modifying databases. Update statement is used to update existing records in a database. Update is a Data Manipulation Language (DML) statement. Alter SQL command is used to modify, delete or add a column to an existing table in a database. Alter is a Data Definition Language (DDL) statement.Commands that are used to define the structure of a database (database schema) are called DDL statements.


This field property automatically fills in a certain value for this field in new records as you add to a table?

Field size automatically fills in a certain value in new records as you add to the table.


What is ms-access forms?

In simple terms, a ms-access form is a *window* into a database that allows the users to add/edit/delete records in a way that is customizable. A form is a way to view data differently than the datasheet view.


What software tool can be used to create a database add change and delete data in the database sort and retrieve data and create forms and reports using the data in the database?

datebase management system


Codes for edit and delete and add using visual basic 6 database Patients thanks?

Putapeteng nakorner


What are 2 ways to add a record to a table in Access?

You can enter it through the datasheet. You can enter it through a form. You can also use an Append Query to add records to a table from another table.


How do you add a table?

The categories are confusing here.To add a table to a web page in HTML, use the -tags. To make a table row, use -tags and for cells in that row, put -tags inside. -tags make heading cells, i.e. bold text and a prefedined padding:FruitSweetnessOrangeSourAppleSour+SweetAs for database programming, this depends on the DBMS. If it's a MySQL database, you can add tables with the command "CREATE TABLE".


What are the functions of a database program?

Functions of a DB programIn it's most basic form, a database program must be able to add, delete and edit records in the tables which make up the database and also to search for specific records in the tables by using different search criteria. Also, in most cases, user authentication is required. Function of DatabaseIndexingViewsSecurityIntergrityCocurrencyBackup and RecoveryDesingDocumentationUpdateQuery


Define DDL and DML?

SQL These are the main categories are DDL(Data Definition Language) DML ( Data Manipulation Language) DQL( Data Query Language) DCL( Data control Language) Data administration commands Transactional control command. ddl includes insert ,delete ,update values it include select statements, it include insert statement, it includes drop statements


What are the advantages and disadvantages of hierarchical model databases?

The main advantages of the hierarchical database are:· Performance. Navigating among the records in a hierarchical database is very fast because the parent/child relationships are implemented with pointers from one data record to another. The same is true for the sideways relationships from child to child and parent to parent. Thus, after finding the first record, the program does not have to search an index (or do a table scan) to find the next record. Instead, the application needs only to follow one of the multiple child record pointers, the single sibling record pointer, or the single parent record pointer to get to the "next" record.· Ease of understanding. The organization of the database parallels a corporate organization chart or family tree. As such, it has a familiar "feel" to even nonprogrammers. Moreover, it easily depicts relationships where A is a part of B (as was the case with the order database we discussed, where each item was a part of an order).The main disadvantage of the hierarchical database is its rigid structure. If you want to add a field to a table, the database management system must create a new table for the larger records. Unlike an SQL database, the hierarchical model has no ALTER TABLE command. Moreover, if you want to add a new relationship, you will have to build a new and possibly redundant database structure.