Thank you again for the prompt reply, but I think I may still need to clarify what I wanted to do. My apologies if you knew this and I am the one confused.
We have products with the text attribute 'Name' and then a dropdown of 'Fastener' (with varying values in it). To these products we want to add a new attribute 'Please Select your Case' (and then all the options values that go with it, but the built in zen global controls can handle that, I think.)
We don't use ZenCart for any stock functions, so they would all be left at zero.
So, I think what I need to do is figure out how to combine these two queries on the products_attributes table:
Code:
SELECT *
FROM `zen_products_attributes`
WHERE `options_id` =1
And
Code:
SELECT *
FROM `zen_products_attributes`
WHERE `options_id` =3
And then add in my attribute options_id 122 (and values)
I also think I need to only do this once per product_id
Thanks again for helping I really do appreciate it.