Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to add, modify and delete rows in oracle database

2025-04-07 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)05/31 Report--

Oracle database how to add, modify and delete rows, many novices are not very clear about this, in order to help you solve this problem, the following editor will explain in detail for you, people with this need can come to learn, I hope you can gain something.

Add rows to the table:

The INSERT statement has the courage to add new rows to the table, and the following information can be specified in the INSERT statement:

1. Which table do you insert rows into?

two。 Specify values for those columns

3. Values stored in these columns

When inserting a row, at least specify the values of the primary key and all other columns defined as NOT NULL, except that the values of all columns are optional, if you do not want to specify values for these columns, you can not specify them, and the values of these columns are automatically set to null.

Modify an existing row in the table:

The modification of the tables in the database can be achieved with the UPDATE statement, and when using the update statement, you need to make the following:

1. The table containing the rows to be modified

two。 WHERE clause that indicates the row to be modified

3. The hunting list and its new values, which are specified using the SET clause

A UPDATE statement can modify one or more rows, and if multiple rows are specified, the same modification will be made to those rows. The following UPDATE statement changes the last_name column of the row in the customers table with a value of 2 to Orange:

SQL > UPDATE customers

2 SET last_name = 'Orange'

3 WHERE customer_id = 2

1 row updated.

SQL*plus confirms that a row of records has been updated.

Delete rows from the table

The DELETE statement is used to delete rows from a table, similar to the UPDATE statement, usually using a WHERE clause to restrict the rows you want to delete. If you do not use the WHERE clause, all rows in the table will be deleted. The following example uses a DELETE statement to delete a row with a customer_id of 2 from the customers table:

SQL > DELETE customers

2 WHERE customer_id = 2

1 row updated.

SQL*plus confirms that a row has been deleted. To undo the changes you just made to the database, you can use the ROLLBACK command:

SQL > ROLLBACK

Rollback complete.

Is it helpful for you to read the above content? If you want to know more about the relevant knowledge or read more related articles, please follow the industry information channel, thank you for your support.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report