File: //proc/thread-self/root/lib/python2.7/site-packages/awscli/examples/dynamodb/query.rst
**To query an item**
This example queries items in the *MusicCollection* table. The table has a hash-and-range primary key (*Artist* and *SongTitle*), but this query only specifies the hash key value. It returns song titles by the artist named "No One You Know".
Command::
aws dynamodb query --table-name MusicCollection --projection-expression "SongTitle" --key-condition-expression "Artist = :v1" --expression-attribute-values file://expression-attributes.json
The arguments for ``--expression-attribute-values`` are stored in a JSON file named ``expression-attributes.json``::
{
":v1": {"S": "No One You Know"}
}
Output::
{
"Count": 2,
"Items": [
{
"SongTitle": {
"S": "Call Me Today"
},
"SongTitle": {
"S": "Scared of My Shadow"
}
}
],
"ScannedCount": 2,
"ConsumedCapacity": null
}