I have data in a Azure storage table with the following schema:
PartitionKey TimeStamp Name
.. ... ...
I want to return all entities with name starting with mem. I am trying to achieve this in python.
I could only find docs on doing a complete string comparison in filter parameter in the SDK (https://docs.microsoft.com/en-us/rest/api/storageservices/Querying-Tables-and-Entities?redirectedfrom=MSDN). Is there a way to perform a partial comparison?
The equivalent SQL query is
SELECT * from table where NAME LIKE mem%
