# Branch not match

## Update KYZN BSD

{% code title="branch !='KYZN BSD'" overflow="wrap" lineNumbers="true" %}

```plsql
select * from public.leads
where 
assigned_pic IN (
    'Tegar',
    'Ananda',
    'Annisa',
    'Raditya',
    'Mulyadi',
    'Dhita',
    'Dimas',
    'Seyla',
    'Nesni',
    'Desra',
    'Sarah Tika',
    'Ayu',
    'Endah',
    'Munajar',
    'Roy',
    'Zain'
) AND branch != 'KYZN BSD'
```

{% endcode %}

{% code title="update branch != 'KYZN BSD'" overflow="wrap" lineNumbers="true" %}

```plsql
update public.leads
set 
branch = 'KYZN BSD'
where
assigned_pic IN (
    'Tegar',
    'Ananda',
    'Annisa',
    'Raditya',
    'Mulyadi',
    'Dhita',
    'Dimas',
    'Seyla',
    'Nesni',
    'Desra',
    'Sarah Tika',
    'Ayu',
    'Endah',
    'Munajar',
    'Roy',
    'Zain'
) AND branch != 'KYZN BSD'
```

{% endcode %}

## Update KYZN Kuningan

{% code title="branch != 'KYZN Kuningan'" overflow="wrap" lineNumbers="true" %}

```plsql
select * from public.leads
where 
assigned_pic IN (
'Usep',
'Dede',
'Nicolaas',
'Regi',
'Reinaldy',
'Nisha',
'Reza',
'Riandaud',
'Farhan',
'Indah',
'Jehan',
'Delfi',
'Erika',
'Rastika',
'Richard',
'Ibra',
'Rani',
'Yovita',
'Ulfa'
) AND branch != 'KYZN Kuningan'
```

{% endcode %}

{% code title="update branch != 'KYZN Kuningan'" overflow="wrap" lineNumbers="true" %}

```plsql
update public.leads
set
branch = 'KYZN Kuningan'
where 
assigned_pic IN (
'Usep',
'Dede',
'Nicolaas',
'Regi',
'Reinaldy',
'Nisha',
'Reza',
'Riandaud',
'Farhan',
'Indah',
'Jehan',
'Delfi',
'Erika',
'Rastika',
'Richard',
'Ibra',
'Rani',
'Yovita',
'Ulfa'
) AND branch != 'KYZN Kuningan'
```

{% endcode %}


---

# Agent Instructions: 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:

```
GET https://work.bahrul.me/work/kyzn/database-management/query-checking/branch-not-match.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
