It would be something similar to this...
SELECT `db_hikaserial_serial`.`serial_id`,`db_hikaserial_serial`.`serial_data`, `db_hikashop_product`.`product_name`, `db_hikaserial_serial`.`serial_order_product_id`, `db_hikashop_user`.`user_name`, `db_hikaserial_serial`.`serial_user_id` FROM `db_hikashop_product` , `db_hikaserial_serial`, `db_hikashop_order_product`,`db_hikashop_user` where `db_hikaserial_serial`.`serial_order_product_id` = `db_hikashop_order_product`.`order_product_id` and `db_hikashop_order_product`.`product_id` = `db_hikashop_product`.`product_id` and `db_hikaserial_serial`.`serial_user_id` = `db_hikashop_user`.`user_id` order by `db_hikashop_product`.`product_name`, `db_hikashop_user`.`user_name` ;
That would give me the info I need. I can now get it from phpadmin, but I think it's a feature hikaserial should have...
Thanks.