Dude, I'm not upset... It's just hard to bridge the language gap some days. No need to worry.
Yeah, I misunderstood you. If you are gonna store a different dataset in those two different fields then you're fine.
So what you're saying is you have two kinds of product, some of which needs data in certain fields, some needs data in other fields, and you aren't sure if you should break them out into two tables or not because their formats are a little different.
So now you need to ask yourself if these two sets of products really belong together or not based on what you are gonna do with them.
Maybe they'll be used to fill in a page in alphabetical order, both types together a lot. If that's the case, leave them in one table and just leave the unused fields NULL and program your display code to know what to do with a NULL field, if anything even needs to be done.
If they will only rarely be merged into one data set, then you might want to keep them apart for simplicity's sake.
Either one would work here, but it depends on what you're gonna do with the data.