Örnek: İkili veri alınıyor
Aşağıdaki sorgu döndürür depolanan ürün fotoğrafı bir varbinary(max) türü sütun.The BINARY BASE64 option is specified in the query to return the binary data in base64-encoded format.
Örnek
USE AdventureWorks2008R2;
GO
SELECT ProductPhotoID, ThumbNailPhoto
FROM Production.ProductPhoto
WHERE ProductPhotoID=1
FOR XML RAW, BINARY BASE64 ;
GO
Bu sonucu verir:
<row ProductModelID="1" ThumbNailPhoto="base64 encoded binary data"/>