The small window you are using greatly diminishes your demo experience. Please consider viewing using a larger window.
Command Text:
SELECT
`product`.`name` `product_name`,
`product`.`description` `product_description`,
`product`.`price` `product_price`,
`product`.`photoid` `product_photoid`,
`product`.`id` `product_id`,
`photo`.`content` `photo_content`,
`photo`.`caption` `photo_caption`,
`photo`.`id` `photo_id`
FROM `product` `product`
INNER JOIN `photo` `photo` ON (`product`.`photoid` = `photo`.`id`)
WHERE (`product`.`id` = 3)
There is no result available.