Kasivs commited on
Commit
74575f0
1 Parent(s): d4ec03a

Upload DatasetForSQL.csv with huggingface_hub

Browse files
Files changed (1) hide show
  1. DatasetForSQL.csv +63 -0
DatasetForSQL.csv ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Prompt,Response
2
+ I want to get the details of all the search details for the account,"select * from SearchExecutions a
3
+ Inner join contacts b on a.usernamekey = b.usernamekey
4
+ where b.accountname = ABC"
5
+ I want to get the details of all the search details for the user,"select * from SearchExecutions a
6
+ Inner join contacts b on a.usernamekey = b.usernamekey
7
+ where b.username = ABC"
8
+ I want to know the sector of the Company details of the searches happened,"select * from SearchExecutions a
9
+ Inner join CompanySector b on a.searchCodes = b.Sectorcodes
10
+ where b.username = ABC"
11
+ I want to know the Industry group of the Company details of the searches happened,"select * from SearchExecutions a
12
+ Inner join CompanySector b on a.searchCodes = b.IndustryGroupcode
13
+ where b.username = ABC"
14
+ I want to know the Industry of the Company details of the searches happened,"select * from SearchExecutions a
15
+ Inner join CompanySector b on a.searchCodes = b.Industrycode
16
+ where b.username = ABC"
17
+ I want to know the Subindustry of the Company details of the searches happened,"select * from SearchExecutions a
18
+ Inner join CompanySector b on a.searchCodes = b.SubIndustrycode
19
+ where b.username = ABC"
20
+ I want to know the sector of the Company details of the searches happened for Client ABC,"select * from SearchExecutions a
21
+ Inner join CompanySector b on a.searchCodes = b.Sectorcodes
22
+ inner join contacts c on a.username = c.username
23
+ Inner join Accounts d on c.accountid = d.accountid
24
+ where d.accountname = ABC"
25
+ I want to know the Industry group of the Company details of the searches happened,"select * from SearchExecutions a
26
+ Inner join CompanySector b on a.searchCodes = b.IndustryGroupcode
27
+ inner join contacts c on a.username = c.username
28
+ Inner join Accounts d on c.accountid = d.accountid
29
+ where d.accountname = ABC"
30
+ I want to know the Industry of the Company details of the searches happened,"select * from SearchExecutions a
31
+ Inner join CompanySector b on a.searchCodes = b.Industrycode
32
+ inner join contacts c on a.username = c.username
33
+ Inner join Accounts d on c.accountid = d.accountid
34
+ where d.accountname = ABC"
35
+ I want to know the Subindustry of the Company details of the searches happened,"select * from SearchExecutions a
36
+ Inner join CompanySector b on a.searchCodes = b.SubIndustrycode
37
+ inner join contacts c on a.username = c.username
38
+ Inner join Accounts d on c.accountid = d.accountid
39
+ where d.accountname = ABC"
40
+ I want to know the sector of the Company details of the searches happened for Client ABC for last 6 months,"select * from SearchExecutions a
41
+ Inner join CompanySector b on a.searchCodes = b.Sectorcodes
42
+ inner join contacts c on a.username = c.username
43
+ Inner join Accounts d on c.accountid = d.accountid
44
+ where d.accountname = ABC
45
+ and a.eventdate >= currentday () - 180"
46
+ I want to know the Industry group of the Company details of the searches happened for Client ABC for last 6 months,"select * from SearchExecutions a
47
+ Inner join CompanySector b on a.searchCodes = b.IndustryGroupcode
48
+ inner join contacts c on a.username = c.username
49
+ Inner join Accounts d on c.accountid = d.accountid
50
+ where d.accountname = ABC
51
+ and a.eventdate >= currentday () - 180"
52
+ I want to know the Industry of the Company details of the searches happened for Client ABC for last 6 months,"select * from SearchExecutions a
53
+ Inner join CompanySector b on a.searchCodes = b.Industrycode
54
+ inner join contacts c on a.username = c.username
55
+ Inner join Accounts d on c.accountid = d.accountid
56
+ where d.accountname = ABC
57
+ and a.eventdate >= currentday () - 180"
58
+ I want to know the Subindustry of the Company details of the searches happened for Client ABC for last 6 months,"select * from SearchExecutions a
59
+ Inner join CompanySector b on a.searchCodes = b.SubIndustrycode
60
+ inner join contacts c on a.username = c.username
61
+ Inner join Accounts d on c.accountid = d.accountid
62
+ where d.accountname = ABC
63
+ and a.eventdate >= currentday () - 180"