mirror of
https://github.com/Microsoft/sql-server-samples.git
synced 2025-12-08 14:58:54 +00:00
8 lines
165 B
Transact-SQL
8 lines
165 B
Transact-SQL
-- =====================
|
|
-- Drop User template
|
|
-- =====================
|
|
USE <database_name, sysname, AdventureWorks>
|
|
GO
|
|
|
|
DROP USER <user_name, sysname, user_name>
|
|
GO |