Spaces:
Sleeping
Sleeping
Update chatbot-gradio.py
Browse files- chatbot-gradio.py +1 -1
chatbot-gradio.py
CHANGED
|
@@ -130,7 +130,7 @@ async def handle_query(user_input: str):
|
|
| 130 |
SQL Guidelines (if needed):
|
| 131 |
1. Always use SELECT * instead of field lists
|
| 132 |
2. For exact matches use: WHERE c.[field] = value
|
| 133 |
-
3. For
|
| 134 |
4. Do not use AS and cast key names
|
| 135 |
|
| 136 |
Examples:
|
|
|
|
| 130 |
SQL Guidelines (if needed):
|
| 131 |
1. Always use SELECT * instead of field lists
|
| 132 |
2. For exact matches use: WHERE c.[field] = value
|
| 133 |
+
3. For range matches always use exact checks: WHERE c.[field].min = X AND c.[field].max = Y
|
| 134 |
4. Do not use AS and cast key names
|
| 135 |
|
| 136 |
Examples:
|