Code: Select all
SELECT
product.product_id,
product.product_name
FROM
product
Then I view these output in my browsed form (for example for 2 selecttions)as process_product_id field:
To inquery name of products which have above product_id I've used this query and changed display field from process_product_id to product_name but it returns an empty browsed table:"5adb065f8879469","5adb0673b1fd06f"
Code: Select all
SELECT
process.*,
product.*
FROM
process
JOIN product ON process.process_product_id = product.product_id
Thanks in advance.