Transact-SQL 语法约定语法syntaxsql 复制 DROP LOGIN login_name 参数login_name 指定要删除的登录名。备注不能删除正在登录的登录名。 也不能删除拥有任何安全对象、服务器级对象或 SQL Server 代理作业的登录名。可以删除数据库用户映射到的登录名,但是这会创建孤立用户。 有关详细信息,请参阅孤立用户故障排除 ...
Transact-SQL 语法约定 语法 syntaxsql DROPSYNONYM[IFEXISTS] [ schema. ]synonym_name 参数 IF EXISTS 适用范围:SQL Server(SQL Server 2016 (13.x) 到当前版本)。 只有在同义词已存在时才对其进行有条件地删除。 架构 指定同义词所在的架构。 如果未指定架构,SQL Server 将使用当前用户的默认架构。
syntaxsql 复制 DROP EXTERNAL LANGUAGE <language_name> 参数language_name语言是数据库范围的对象。 语言名称在数据库中必须唯一。权限必须拥有 ALTER ANY EXTERNAL LANGUAGE 权限,才能删除语言。 默认情况下,任何数据库所有者或对象所有者也可以删除外部语言。
Transact-SQL 语法约定备注 Azure Synapse Analytics 中的无服务器 SQL 池不支持此语法。语法syntaxsql 复制 DROP SYMMETRIC KEY symmetric_key_name [REMOVE PROVIDER KEY] 参数symmetric_key_name 要删除的对称密钥的名称。REMOVE PROVIDER KEY 从EKM 设备中删除可扩展密钥管理 (EKM) 密钥。 有关可扩展密钥管理的...
"Syntax for Schema Objects and Parts in SQL Statements"for information on referring to database links subquery_restriction_clause Use thesubquery_restriction_clauseto restrict the subquery in one of the following ways: WITHREADONLYspecifies that the subquery cannot be updated. ...
A view is deleted with theDROP VIEWstatement. SQL DROP VIEW Syntax DROPVIEWview_name; The following SQL drops the "Brazil Customers" view: Example DROPVIEW[Brazil Customers]; ❮ PreviousNext ❯ Track your progress - it's free! Log inSign Up...
Syntax rename::= Text description of rename Keywords and Parameters old_name Specify the name of an existing table, view, sequence, or private synonym. new_name Specify the new name to be given to the existing object. The new name must not already be used by another schema object in the...
The syntax defined in<drop_backward_compatible_index>will be removed in a future version of Microsoft SQL Server. Avoid using this syntax in new development work, and plan to modify applications that currently use the feature. Use the syntax specified under<drop_relational_or_xml_index>instead....
Transact-SQL 语法约定 语法 syntaxsql复制 sp_dropextendedproperty[ @name = ]N'name'[ , [ @level0type = ]'level0type'] [ , [ @level0name = ]N'level0name'] [ , [ @level1type = ]'level1type'] [ , [ @level1name = ]N'level1name'] [ , [ @level2type = ]'level2type']...
Transact-SQL 语法约定语法syntaxsql 复制 sp_dropuser [ @name_in_db = ] N'name_in_db' [ ; ] 参数[ @name_in_db = ] N'name_in_db'要移除的用户的名称。 @name_in_db为 sysname,没有默认值。 当前数据库中必须存在@name_in_db。 指定 Windows 帐户时,请使用数据库知道该帐户的名称。