Upload sql_llama2_dataset3_r3a.txt
Browse files- sql_llama2_dataset3_r3a.txt +20 -0
sql_llama2_dataset3_r3a.txt
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[Q]You are a powerful text-to-SQL model. Your job is to response to an input by generating a SQL query based on Symphony Database table schema. The query must be enclosed in the <sql> tag.\n\n ### Input: \n What is the bank balance for OCBC bank? \n\n [A] ### Response:\n We will use symphony database v_banktransaction table with the following schema:\n\n create table v_banktransaction (id integer primary key,account_name varchar(300), in_amount decimal(20,2),out_amount decimal(20,2), transactiondate timestamp )\n\n <sql>SELECT sum(in_amount - out_amount) FROM v_banktransaction where account_name='OCBC'</sql>
|
2 |
+
[Q]You are a powerful text-to-SQL model. Your job is to response to an input by generating a SQL query based on Symphony Database table schema. The query must be enclosed in the <sql> tag.\n\n ### Input: \n What is the bank balance for Hong Leong bank? \n\n [A] ### Response:\n We will use symphony database v_banktransaction table with the following schema:\n\n create table v_banktransaction (id integer primary key,account_name varchar(300), in_amount decimal(20,2),out_amount decimal(20,2), transactiondate timestamp )\n\n <sql>SELECT sum(in_amount - out_amount) FROM v_banktransaction where account_name='Hong Leong'</sql>
|
3 |
+
[Q]You are a powerful text-to-SQL model. Your job is to response to an input by generating a SQL query based on Symphony Database table schema. The query must be enclosed in the <sql> tag.\n\n ### Input: \n What is the bank balance for Citibank bank? \n\n [A] ### Response:\n We will use symphony database v_banktransaction table with the following schema:\n\n create table v_banktransaction (id integer primary key,account_name varchar(300), in_amount decimal(20,2),out_amount decimal(20,2), transactiondate timestamp )\n\n <sql>SELECT sum(in_amount - out_amount) FROM v_banktransaction where account_name='Citibank'</sql>
|
4 |
+
[Q]You are a powerful text-to-SQL model. Your job is to response to an input by generating a SQL query based on Symphony Database table schema. The query must be enclosed in the <sql> tag.\n\n ### Input: \n What is the bank balance for America bank? \n\n [A] ### Response:\n We will use symphony database v_banktransaction table with the following schema:\n\n create table v_banktransaction (id integer primary key,account_name varchar(300), in_amount decimal(20,2),out_amount decimal(20,2), transactiondate timestamp )\n\n <sql>SELECT sum(in_amount - out_amount) FROM v_banktransaction where account_name='America'</sql>
|
5 |
+
[Q]You are a powerful text-to-SQL model. Your job is to response to an input by generating a SQL query based on Symphony Database table schema. The query must be enclosed in the <sql> tag.\n\n ### Input: \n What is the bank balance for Alliance bank? \n\n [A] ### Response:\n We will use symphony database v_banktransaction table with the following schema:\n\n create table v_banktransaction (id integer primary key,account_name varchar(300), in_amount decimal(20,2),out_amount decimal(20,2), transactiondate timestamp )\n\n <sql>SELECT sum(in_amount - out_amount) FROM v_banktransaction where account_name='Alliance'</sql>
|
6 |
+
[Q]You are a powerful text-to-SQL model. Your job is to response to an input by generating a SQL query based on Symphony Database table schema. The query must be enclosed in the <sql> tag.\n\n ### Input: \n What is the bank balance for Affin bank? \n\n [A] ### Response:\n We will use symphony database v_banktransaction table with the following schema:\n\n create table v_banktransaction (id integer primary key,account_name varchar(300), in_amount decimal(20,2),out_amount decimal(20,2), transactiondate timestamp )\n\n <sql>SELECT sum(in_amount - out_amount) FROM v_banktransaction where account_name='Affin'</sql>
|
7 |
+
[Q]You are a powerful text-to-SQL model. Your job is to response to an input by generating a SQL query based on Symphony Database table schema. The query must be enclosed in the <sql> tag.\n\n ### Input: \n What is the bank balance for Deutsche bank? \n\n [A] ### Response:\n We will use symphony database v_banktransaction table with the following schema:\n\n create table v_banktransaction (id integer primary key,account_name varchar(300), in_amount decimal(20,2),out_amount decimal(20,2), transactiondate timestamp )\n\n <sql>SELECT sum(in_amount - out_amount) FROM v_banktransaction where account_name='Deutsche'</sql>
|
8 |
+
[Q]You are a powerful text-to-SQL model. Your job is to response to an input by generating a SQL query based on Symphony Database table schema. The query must be enclosed in the <sql> tag.\n\n ### Input: \n What is the bank balance for Mizuho bank? \n\n [A] ### Response:\n We will use symphony database v_banktransaction table with the following schema:\n\n create table v_banktransaction (id integer primary key,account_name varchar(300), in_amount decimal(20,2),out_amount decimal(20,2), transactiondate timestamp )\n\n <sql>SELECT sum(in_amount - out_amount) FROM v_banktransaction where account_name='Mizuho'</sql>
|
9 |
+
[Q]You are a powerful text-to-SQL model. Your job is to response to an input by generating a SQL query based on Symphony Database table schema. The query must be enclosed in the <sql> tag.\n\n ### Input: \n What is the bank balance for Nova Scotia bank? \n\n [A] ### Response:\n We will use symphony database v_banktransaction table with the following schema:\n\n create table v_banktransaction (id integer primary key,account_name varchar(300), in_amount decimal(20,2),out_amount decimal(20,2), transactiondate timestamp )\n\n <sql>SELECT sum(in_amount - out_amount) FROM v_banktransaction where account_name='Nova Scotia'</sql>
|
10 |
+
[Q]You are a powerful text-to-SQL model. Your job is to response to an input by generating a SQL query based on Symphony Database table schema. The query must be enclosed in the <sql> tag.\n\n ### Input: \n What is the bank balance for Asian Finance bank? \n\n [A] ### Response:\n We will use symphony database v_banktransaction table with the following schema:\n\n create table v_banktransaction (id integer primary key,account_name varchar(300), in_amount decimal(20,2),out_amount decimal(20,2), transactiondate timestamp )\n\n <sql>SELECT sum(in_amount - out_amount) FROM v_banktransaction where account_name='Asian Finance'</sql>
|
11 |
+
[Q]You are a powerful text-to-SQL model. Your job is to response to an input by generating a SQL query based on Symphony Database table schema. The query must be enclosed in the <sql> tag.\n\n ### Input: \n What is the bank balance for Al Rajhi bank? \n\n [A] ### Response:\n We will use symphony database v_banktransaction table with the following schema:\n\n create table v_banktransaction (id integer primary key,account_name varchar(300), in_amount decimal(20,2),out_amount decimal(20,2), transactiondate timestamp )\n\n <sql>SELECT sum(in_amount - out_amount) FROM v_banktransaction where account_name='Al Rajhi'</sql>
|
12 |
+
[Q]You are a powerful text-to-SQL model. Your job is to response to an input by generating a SQL query based on Symphony Database table schema. The query must be enclosed in the <sql> tag.\n\n ### Input: \n What is the bank balance for JPMorgan bank? \n\n [A] ### Response:\n We will use symphony database v_banktransaction table with the following schema:\n\n create table v_banktransaction (id integer primary key,account_name varchar(300), in_amount decimal(20,2),out_amount decimal(20,2), transactiondate timestamp )\n\n <sql>SELECT sum(in_amount - out_amount) FROM v_banktransaction where account_name='JPMorgan'</sql>
|
13 |
+
[Q]You are a powerful text-to-SQL model. Your job is to response to an input by generating a SQL query based on Symphony Database table schema. The query must be enclosed in the <sql> tag.\n\n ### Input: \n What is the bank balance for Goldman Sachs bank? \n\n [A] ### Response:\n We will use symphony database v_banktransaction table with the following schema:\n\n create table v_banktransaction (id integer primary key,account_name varchar(300), in_amount decimal(20,2),out_amount decimal(20,2), transactiondate timestamp )\n\n <sql>SELECT sum(in_amount - out_amount) FROM v_banktransaction where account_name='Goldman Sachs'</sql>
|
14 |
+
[Q]You are a powerful text-to-SQL model. Your job is to response to an input by generating a SQL query based on Symphony Database table schema. The query must be enclosed in the <sql> tag.\n\n ### Input: \n What is the bank balance for HSBC bank? \n\n [A] ### Response:\n We will use symphony database v_banktransaction table with the following schema:\n\n create table v_banktransaction (id integer primary key,account_name varchar(300), in_amount decimal(20,2),out_amount decimal(20,2), transactiondate timestamp )\n\n <sql>SELECT sum(in_amount - out_amount) FROM v_banktransaction where account_name='HSBC'</sql>
|
15 |
+
[Q]You are a powerful text-to-SQL model. Your job is to response to an input by generating a SQL query based on Symphony Database table schema. The query must be enclosed in the <sql> tag.\n\n ### Input: \n What is the bank balance for RHB bank? \n\n [A] ### Response:\n We will use symphony database v_banktransaction table with the following schema:\n\n create table v_banktransaction (id integer primary key,account_name varchar(300), in_amount decimal(20,2),out_amount decimal(20,2), transactiondate timestamp )\n\n <sql>SELECT sum(in_amount - out_amount) FROM v_banktransaction where account_name='RHB'</sql>
|
16 |
+
[Q]You are a powerful text-to-SQL model. Your job is to response to an input by generating a SQL query based on Symphony Database table schema. The query must be enclosed in the <sql> tag.\n\n ### Input: \n What is the bank balance for Truist bank? \n\n [A] ### Response:\n We will use symphony database v_banktransaction table with the following schema:\n\n create table v_banktransaction (id integer primary key,account_name varchar(300), in_amount decimal(20,2),out_amount decimal(20,2), transactiondate timestamp )\n\n <sql>SELECT sum(in_amount - out_amount) FROM v_banktransaction where account_name='Truist'</sql>
|
17 |
+
[Q]You are a powerful text-to-SQL model. Your job is to response to an input by generating a SQL query based on Symphony Database table schema. The query must be enclosed in the <sql> tag.\n\n ### Input: \n What is the bank balance for China bank? \n\n [A] ### Response:\n We will use symphony database v_banktransaction table with the following schema:\n\n create table v_banktransaction (id integer primary key,account_name varchar(300), in_amount decimal(20,2),out_amount decimal(20,2), transactiondate timestamp )\n\n <sql>SELECT sum(in_amount - out_amount) FROM v_banktransaction where account_name='China'</sql>
|
18 |
+
[Q]You are a powerful text-to-SQL model. Your job is to response to an input by generating a SQL query based on Symphony Database table schema. The query must be enclosed in the <sql> tag.\n\n ### Input: \n What is the bank balance for RHB bank? \n\n [A] ### Response:\n We will use symphony database v_banktransaction table with the following schema:\n\n create table v_banktransaction (id integer primary key,account_name varchar(300), in_amount decimal(20,2),out_amount decimal(20,2), transactiondate timestamp )\n\n <sql>SELECT sum(in_amount - out_amount) FROM v_banktransaction where account_name='RHB'</sql>
|
19 |
+
[Q]You are a powerful text-to-SQL model. Your job is to response to an input by generating a SQL query based on Symphony Database table schema. The query must be enclosed in the <sql> tag.\n\n ### Input: \n What is the bank balance for Russia bank? \n\n [A] ### Response:\n We will use symphony database v_banktransaction table with the following schema:\n\n create table v_banktransaction (id integer primary key,account_name varchar(300), in_amount decimal(20,2),out_amount decimal(20,2), transactiondate timestamp )\n\n <sql>SELECT sum(in_amount - out_amount) FROM v_banktransaction where account_name='Russia'</sql>
|
20 |
+
[Q]You are a powerful text-to-SQL model. Your job is to response to an input by generating a SQL query based on Symphony Database table schema. The query must be enclosed in the <sql> tag.\n\n ### Input: \n What is the bank balance for Singapore bank? \n\n [A] ### Response:\n We will use symphony database v_banktransaction table with the following schema:\n\n create table v_banktransaction (id integer primary key,account_name varchar(300), in_amount decimal(20,2),out_amount decimal(20,2), transactiondate timestamp )\n\n <sql>SELECT sum(in_amount - out_amount) FROM v_banktransaction where account_name='Singapore'</sql>
|