# Contact Need FU

{% code title="from db.combined" overflow="wrap" lineNumbers="true" %}

```plsql
select "timestamp", branch, phone, name, contact_owner, assigned_pic, interest, interest_remarks, source, sremarks
from public.combined where mql_date is null ORDER by "timestamp" DESC
```

{% endcode %}

{% code title="from db.web" overflow="wrap" lineNumbers="true" %}

```plsql
select timestamp, branch, phone, name, appt_date, trial_class, value, contact_owner, date_of_birth, path from public.web where appt_id is null ORDER by timestamp DESC
```

{% endcode %}

{% code title="from db.appt" overflow="wrap" lineNumbers="true" %}

```plsql
select 
appt_date,
branch,
visit_category,
appt_category,
name, phone, contact_owner, assigned_pic, created_by, class_category, trial_class, visit_notes, kyzn_account,
mql_date, missed_date
from public.appt where appt_date::date < '2025-02-17' AND "mqlPlus_date" is null order by appt_date DESC
```

{% 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/contact-need-fu.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.
