mySQL groupconcat gibt BLOB xxxB / Kib zurück

Auf Empfehlung eines Mitglieds und eines vorherigen Beitrags führe ich eine Abfrage für mehrere Tabellen in einer Interspire-Warenkorbdatenbank durch, die folgendermaßen aussieht:

SELECT c.customerid, c.custconfirstname, c.custconemail, o.ordstatus, o.orddate, GROUP_CONCAT(  'Order Id: ', orderid,  ' | Product name: ', ordprodname,  ' | Quantity: ', ordprodqty,  '<br>' ) AS ordered_items
FROM isc_customers c
LEFT OUTER JOIN isc_orders o ON o.ordcustid = c.customerid
LEFT OUTER JOIN isc_order_products op ON op.orderorderid = o.orderid
LEFT OUTER JOIN isc_product_images pi ON pi.imageprodid = op.orderprodid
GROUP BY c.customerid
HAVING COUNT( DISTINCT o.ordcustid ) >0
AND o.ordstatus = 0
AND o.orddate < UNIX_TIMESTAMP( ) -  '18000'
AND o.orddate > UNIX_TIMESTAMP( ) -  '259200'

Das Ergebnis, das ich in phpmyadmin erhalte, sieht folgendermaßen aus:

customerid  custconfirstname    custconemail        ordstatus   orddate     ordered_items
6532        Cust1               [email protected]   0           1337502962  [BLOB - 498B]
5522        Cust2               [email protected]   0           1337670453  [BLOB - 284B]
4321        Cust3               [email protected]   0           1337507476  [BLOB - 521B]
1235        Cust4               [email protected]   0           1337577095  [BLOB - 1.0  KiB]
9560        Cust5               [email protected]   0           1337518452  [BLOB - 1.0  KiB]

Wenn ich versuche, das Ergebnis in einer PHP-Seite zu testen, wird nichts zurückgegeben. Ich frage mich nur, was der Blob bedeutet und wie man ihn benutzt. Es ist offensichtlich, dass es einige Daten enthält. Ich weiß nur nicht, wie ich darauf zugreifen oder sie verwenden soll.

Antworten auf die Frage(1)

Ihre Antwort auf die Frage