absolute newbie here:
I have table with columns: resource, resource_type_field, value.
I have this simple query
SELECT `resource` FROM `resource_data` WHERE `resource_type_field`=8
and would need to take the results, do another query on these results:
SELECT `resource` FROM `resource_data` WHERE `value`=2011
and than select ‘value’, where these two queries matches. How is this done?
Thanks for help.
1 Answer