English 中文(简体)
返回 Blob XXXB / Kib
原标题:mySQL groupconcat returning BLOB xxxB / Kib

依据一位成员及前一职位Im的建议, 在一个间歇购物车数据库的多张表格上进行询问,

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 

我进入phpmyadmin的结果是这样的:

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]

当我试图在php页面上回录结果来测试它时,没有回音。我只是想知道Blob是什么意思和如何使用它。很明显,它有一些数据,我只是不知道如何访问或使用它。

最佳回答

在 phpmyadmin 上方显示的值中,您可以看到 +Options 按钮单击该按钮,然后检查 显示 BLOB 内容,然后单击 G 按钮。它会显示值 。

您可以以类似的方式使用定购项目。您正在如何访问客户端 。

php 中的 php

foreach($resultSet as $row)
{
   $customerid = $row[ customerid ];
   $ordered_items = $row[ ordered_items ];
}

变量 $ordered_ items 包含在 phpmyadmin 中显示的值。

问题回答

暂无回答




相关问题
SQL SubQuery getting particular column

I noticed that there were some threads with similar questions, and I did look through them but did not really get a convincing answer. Here s my question: The subquery below returns a Table with 3 ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

php return a specific row from query

Is it possible in php to return a specific row of data from a mysql query? None of the fetch statements that I ve found return a 2 dimensional array to access specific rows. I want to be able to ...

Character Encodings in PHP and MySQL

Our website was developed with a meta tag set to... <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> This works fine for M-dashes and special quotes, etc. However, I ...

Pagination Strategies for Complex (slow) Datasets

What are some of the strategies being used for pagination of data sets that involve complex queries? count(*) takes ~1.5 sec so we don t want to hit the DB for every page view. Currently there are ~...

Averaging a total in mySQL

My table looks like person_id | car_id | miles ------------------------------ 1 | 1 | 100 1 | 2 | 200 2 | 3 | 1000 2 | 4 | 500 I need to ...

热门标签