Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 SQL ANSI Truncate 中是函数还是语句?
SQL ANSI 中的 TRUNCATE 是什么样的命令?
它是一个语句,特别是数据操作 ( DML ) 语句,例如DELETEor INSERT。它基本上DELETE FROM没有WHERE,除了大多数引擎处理记录命令的方式与DELETE FROM.
DELETE
INSERT
DELETE FROM
WHERE
我不确定 ANSI SQL,但在 Microsoft SQL Server 中,TRUNCATE是一个语句。