Update README.md
Browse filesFix typo on model card question example
README.md
CHANGED
|
@@ -185,7 +185,7 @@ CREATE TABLE Shipment_Items (
|
|
| 185 |
```
|
| 186 |
|
| 187 |
### Questions
|
| 188 |
-
|
| 189 |
```sql
|
| 190 |
SELECT email_address , town_city , county FROM customers GROUP BY gender_code ORDER BY count(*) ASC LIMIT 1
|
| 191 |
```
|
|
|
|
| 185 |
```
|
| 186 |
|
| 187 |
### Questions
|
| 188 |
+
What are the email address, town and county of the customers who are of the least common gender?
|
| 189 |
```sql
|
| 190 |
SELECT email_address , town_city , county FROM customers GROUP BY gender_code ORDER BY count(*) ASC LIMIT 1
|
| 191 |
```
|