删除行 (数据管理)

描述

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

如果输入行来自要素类或表,则会删除所有行。如果输入行来自没有选定内容的图层或表视图,则会删除所有行。

使用方法

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

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

  • 如果输入为图层或表视图,并且图层或表视图没有选定内容,将会删除所有行。如果输入为表,将删除所有行。

    注:

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

语法

DeleteRows(in_rows)
参数说明数据类型
in_rows

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

Table View

派生输出

名称说明数据类型
out_table

已更新的输入。

表视图

代码示例

删除行 (DeleteRows) 示例 1(Python 窗口)

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

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

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

# Name: DeleteRows_Example2.py
# 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"
 
# Execute CopyRows to make a new copy of the table
arcpy.CopyRows_management(inTable, outTable)
# Execute MakeTableView
arcpy.MakeTableView_management(outTable, tempTableView)
# Execute SelectLayerByAttribute to determine which rows to delete
arcpy.SelectLayerByAttribute_management(tempTableView, "NEW_SELECTION", expression)
# Execute GetCount and if some features have been selected, then execute
#  DeleteRows to remove the selected rows.
if int(arcpy.GetCount_management(tempTableView)[0]) > 0:
    arcpy.DeleteRows_management(tempTableView)

许可信息

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

相关主题