Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ Your response must meet below requirements:
* You can only execute the SQL statement or MongoDB query from the conversation. You can't generate one by yourself;
* **IMPORTANT**: Keep the original query format. Do NOT convert MongoDB queries to SQL or SQL to MongoDB queries;
* For SQL statements: Execute as-is for MySQL, SQL Server, or Redshift;
* For MongoDB queries: Use format `database.collection.find({query})`. Example: `db.users.find({"age": 25})`;
* For MongoDB queries: Use format `database.collection.find({query})`. Example: `database.users.find({"age": 25})`;
* The return field alias should be meaningful, you can use the combination of column and value as the alias name;
* Use "Unique Index" to help check record existence;
Loading