> For the complete documentation index, see [llms.txt](https://docs.tibero.com/tibero-manuals/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.tibero.com/tibero-manuals/7.2.6.manuals/sql-reference-guide/data-definition-language/drop-trigger.md).

# DROP TRIGGER

데이터베이스에서 트리거를 제거합니다. 트리거가 정의된 테이블을 **DROP TABLE** 문으로 제거하면 해당 트리거도 함께 제거됩니다. 따라서 **DROP TRIGGER** 문을 별도로 실행하지 않아도 됩니다.

**DROP TRIGGER**의 세부 내용은 다음과 같습니다.

* **문법**

<div align="left"><figure><img src="https://content.gitbook.com/content/evqs7Ne3nMyXQFkBSQWR/blobs/LFSSgrxUvaxInOMKtmKS/input_drop_trigger.svg" alt=""><figcaption></figcaption></figure></div>

* **특권**
  * 다음 조건 중 하나를 만족하면 **DROP TRIGGER** 문을 실행할 수 있습니다.
    * 사용자가 소유한 스키마에 있는 트리거를 제거할 때는 실행할 수 있습니다.
    * 다른 사용자의 스키마에 있는 트리거를 제거할 때는 `DROP ANY TRIGGER` 시스템 특권이 필요합니다.
* **구성요소**

<table><thead><tr><th width="172.22222900390625">구성요소</th><th>설명</th></tr></thead><tbody><tr><td>IF EXISTS</td><td><ul><li>트리거가 없더라도 오류를 반환하지 않고 성공 메시지를 반환</li><li>트리거가 있으면 기존 DROP 문과 동일하게 동작</li></ul></td></tr><tr><td>schema</td><td><ul><li>제거할 트리거가 속한 스키마의 이름</li><li>생략하면 현재 사용자의 스키마로 인식</li></ul></td></tr><tr><td>trigger_name</td><td>제거할 트리거의 이름</td></tr></tbody></table>

* **예제**

다음은 **DROP TRIGGER**를 사용해 트리거를 제거하는 예입니다.

```
DROP TRIGGER tr1;
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.tibero.com/tibero-manuals/7.2.6.manuals/sql-reference-guide/data-definition-language/drop-trigger.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
