|
[ |
|
{ |
|
"text": "Give me a 4-room apartment in New York City on the 6th floor.", |
|
"label": "SELECT * FROM table WHERE room = 4 AND floor = 6 AND city = 'New York'" |
|
}, |
|
{ |
|
"text": "I'm looking for a 2-bedroom apartment in San Francisco with a balcony.", |
|
"label": "SELECT * FROM table WHERE room = 2 AND city = 'San Francisco'" |
|
}, |
|
{ |
|
"text": "I need a studio apartment in London with a washer and dryer in unit.", |
|
"label": "SELECT * FROM table WHERE room = 1 AND city = 'London'" |
|
}, |
|
{ |
|
"text": "I'm interested in a 3-bedroom apartment in Chicago with a parking space.", |
|
"label": "SELECT * FROM table WHERE room = 3 AND parking = 1 AND city = 'Chicago'" |
|
}, |
|
{ |
|
"text": "I'm looking for a 1-bedroom apartment in Austin with a pet-friendly policy.", |
|
"label": "SELECT * FROM table WHERE room = 1 AND city = 'Austin'" |
|
}, |
|
{ |
|
"text": "I need a 2-bedroom apartment in Seattle with a view.", |
|
"label": "SELECT * FROM table WHERE room = 2 AND city = 'Seattle'" |
|
}, |
|
{ |
|
"text": "I'm interested in a 3-bedroom apartment in Denver with a backyard.", |
|
"label": "SELECT * FROM table WHERE room = 3 AND city = 'Denver'" |
|
}, |
|
{ |
|
"text": "I'm looking for a 1-bedroom apartment in Boston with a gym in building.", |
|
"label": "SELECT * FROM table WHERE room = 1 AND city = 'Boston'" |
|
} |
|
] |
|
|