Complete the code to remove the attribute 'Age' from the item.
UpdateExpression = "REMOVE [1]"
The REMOVE expression deletes the specified attribute from the item. Here, 'Age' is the attribute to remove.
Complete the code to remove the attributes 'Phone' and 'Email' from the item.
UpdateExpression = "REMOVE [1], Email"
The REMOVE expression can delete multiple attributes separated by commas. Here, 'Phone' and 'Email' are removed.
Fix the error in the REMOVE expression to correctly delete the 'Status' attribute.
UpdateExpression = "REMOVE [1]"
Attribute names in REMOVE expressions should be written without quotes or colons. So, use Status without quotes.
Fill both blanks to remove 'City' and 'Country' attributes from the item.
UpdateExpression = "REMOVE [1], [2]"
To remove multiple attributes, list them separated by commas without quotes. Here, 'City' and 'Country' are removed.
Fill all three blanks to remove 'Phone', 'Email', and 'Address' attributes from the item.
UpdateExpression = "REMOVE [1], [2], [3]"
List all attributes to remove separated by commas without quotes. Here, 'Phone', 'Email', and 'Address' are removed.