Shopify merchants use tags to organize fulfillment. A specific workflow requires identifying orders that are particularly sensitive: those tagged as both High Value and Urgent.
Write an SQL query to find the order IDs that contain both of these tags.
| order_id(INTEGER) | tag_name(VARCHAR) |
|---|---|
| 1001 | High Value |
| 1001 | Urgent |
| 1002 | High Value |
| 1003 | Urgent |
| 1004 | High Value |
| 1004 | Urgent |
| 1004 | International |
| 1005 | Fragile |
| order_id(INTEGER) |
|---|
| 1001 |
| 1004 |