elibb,
you stated:
i need a list of prices, i have some elements, but accordint to the client, the price is different. i know i can save them all in one table, like putting an id to the list, and then setting all the prices for every element, but that table is going to get very very big, so i was thinking that maybe i can add fields, and each field is a new list of prices... any ideas?
The first question is this: does this mean that each individual item has multiple prices, or, a price list for each item?
If the answer to this is YES, then I would suggest that you create a separate table for prices, with the product_id, perhaps a price_type_code, and the price itself. You have a one-to-many relationship between a product and a list of prices, and you should never try to encapsulate a 1-to-many relationship inside a single table.
If the answer is NO, then you only need one price column, which should be in the product table, since there is only one price per product.
Good Luck
------------
Select * from Users where Clue > 0
0 rows returned