I'm trying to filter the devices on my IoT Hub, I need to get only devices that starts with specific Mac Address.
This is the query I'm trying:
SELECT * FROM devices where starts_with(deviceId, 'D8B0')
But I'm getting
Internal Server Error
I also tried:
SELECT * FROM devices where index_of(deviceId, 'D8B0') = 0
With same results
I tried from the Query Explorer on the Azure Portal, Postman and .Net SDK