Hi @RCSmart01
How did you set the Image property of image control?
Is the URL you said as shown below? Could you please share the image link field in the SQL table as an example?

If so, I am afraid it is not supported to show the image directly through the URL, because it requires authentication.
As an alternative workaround, if you want to display the image in Azure Blob Storage and the container name and image filename are known, you can use Azure Blob Storage connector to get the image.
please try this:
1. put the following codes to a button OnSelect property, to trigger it manually, then you will get the container ID and Image File ID, if you enter the correct Container Name and Image Name.
Set(VarContainerID,LookUp(AzureBlobStorage.ListRootFolderV2().value,Name=<"Container Name">).Id);
Set(VarImageID,LookUp(AzureBlobStorage.ListFolderV2(VarContainerID).value,Name=<"Image Name">).Id)
2. add an image control, set the image property as below, then the image file will be shown.
AzureBlobStorage.GetFileContent(VarImageID)

Hope this helps.
Sik