“Löschen Sie die Top 10 Zeilen in SQL” Code-Antworten

Löschen Sie die Top 10 Zeilen in SQL

/* Put the name of your table in Table*/

DELETE TOP (10)
FROM Table
Fantastic Fish

Löschen Sie die Top -N -Zeilen in SQL

DELETE TOP (top_value) [ PERCENT ] 
FROM table
[WHERE conditions];

/* Parameters or Arguments

table
    The table that you wish to delete records from.
WHERE conditions
    Optional. The conditions that must be met for the records to be deleted.
TOP (top_value)
    It will delete the top number of rows in the result set based on top_value. For example, TOP(10) would delete the top 10 rows matching the delete criteria.
PERCENT
    Optional. If PERCENT is specified, then the top rows are based on a top_value percentage of the total result set (as specfied by the PERCENT value). For example, TOP(10) PERCENT would delete the top 10% of the records matching the delete criteria. 
*/
Fantastic Fish

Ähnliche Antworten wie “Löschen Sie die Top 10 Zeilen in SQL”

Fragen ähnlich wie “Löschen Sie die Top 10 Zeilen in SQL”

Weitere verwandte Antworten zu “Löschen Sie die Top 10 Zeilen in SQL” auf Sql

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen