删除行 (数据管理)

摘要

从输入中删除所有行或所选行子集。

将根据以下条件决定是删除所有行还是一部分行:

  • 如果输入为要素类或表,则将删除所有行。
  • 如果输入为未进行选择的图层或表视图,则将删除所有行。
  • 如果输入为已进行选择的图层或表视图,则进删除选定行。

使用情况

  • 输入行参数值可以是 dBASE 表、企业级或文件地理数据库表或要素类、shapefile、图层或表视图。

  • 如果将此工具应用于要素数据,则将会删除整行(包括要素几何)。

  • 注:

    从包含大量行的表中删除所有行可能会很耗时。 如果目的是删除所有行,考虑改用截断表工具。 有关使用截断表的重要警告声明,请参阅截断表文档。

参数

标注说明数据类型
输入行

各行将被删除的要素类、图层、表或表视图。

Table View

派生输出

标注说明数据类型
具有移除行的更新输入

更新的输入。

Table View

arcpy.management.DeleteRows(in_rows)
名称说明数据类型
in_rows

各行将被删除的要素类、图层、表或表视图。

Table View

派生输出

名称说明数据类型
out_table

更新的输入。

Table View

代码示例

DeleteRows 示例 1(Python 窗口)

以下 Python 窗口脚本演示了如何在即时模式下使用 DeleteRows 函数。

import arcpy
arcpy.env.workspace = "C:/data"
arcpy.management.CopyRows("accident.dbf", "C:/output/accident2.dbf")
arcpy.management.DeleteRows("C:/output/accident2.dbf")
删除行 (DeleteRows) 示例 2(独立脚本)

以下独立脚本演示了如何使用 DeleteRows 函数基于表达式删除行。

# Description: Delete rows from a table based on an expression
 
# Import system modules
import arcpy

# Set environment settings
arcpy.env.workspace = "C:/data"

# Set local variables
inTable = "accident.dbf"
outTable = "C:/output/new_accident.dbf"
tempTableView = "accidentTableView"
expression = arcpy.AddFieldDelimiters(tempTableView, "Measure") + " = 0"
 
# Run CopyRows to make a new copy of the table
arcpy.management.CopyRows(inTable, outTable)

# Run MakeTableView
arcpy.management.MakeTableView(outTable, tempTableView)

# Run SelectLayerByAttribute to determine which rows to delete
arcpy.management.SelectLayerByAttribute(tempTableView, "NEW_SELECTION", 
                                        expression)

# Run GetCount and if some features have been selected, run
#  DeleteRows to remove the selected rows.
if int(arcpy.management.GetCount(tempTableView)[0]) > 0:
    arcpy.management.DeleteRows(tempTableView)

许可信息

  • Basic: 是
  • Standard: 是
  • Advanced: 是

相关主题