Hi Dennis,
Thanks for your reply. I didn't find it cryptic, I found it impossible! Once you get past the first set of columns of products, it seems to start a new set of columns (but with the model numbers missing). Whether I open it in OpenOffice or Excel, I see this same oddness.
I'm wondering if someone could help me with some SQL though and maybe we can all figure out if this is the best way to go about this. After running this SQL, I propose to edit the resulting spreadsheet, to remove the products_description column and then to upload the products_attributes table with this new data.
Here's the SQL statement I've come up with - however, it limits the products_id to one (and there are three attributes on each of my products). If I'm not being clear, let me know. I'm *really* rusty with my SQL. Can someone help me fix it so that it returns all rows in products_attributes with the products description matched up?
Select A1.products_name, A2.*
From products_description A1, products_attributes A2
Where A1.products_id=A2.products_id
Group by A2.products_id
Thanks!
Janelle
Bookmarks