Hi Folks, I have an ecommerce application I'm writing and I'm not sure / undecided on a particular way to store shipping rates in PostgreSQL
In this application a user may set the shipping rate per item. So I have 3 fields - local,state and international. A forth field, shipping_type (varchar), holds a value 'dollars' or 'percent'. My twisted logic says a user may say this item has 10 perent shipping to add or 10 dollars to add. This means the shipping rate my be either dollars or percent and can be set on a per item basis. For the 3 fields I'm not sure which is best to use - Float or Numeric ? My application language is ColdFusion and PHP. I'd like to ask which data type would be the better choice. At this stage I'm using Float to represent a value that may be either dollars or percent. Perhaps this technique, using a varchar as a type of switch (shipping_type) , is incorrect / silly / stupid / not robust enough or just plain wrong. Do you think this is OK and if so which would you use - Floast or Numeric ? Thanks for your time. Cheers Rudi. ---------------------------(end of broadcast)--------------------------- TIP 5: Have you checked our extensive FAQ? http://www.postgresql.org/users-lounge/docs/faq.html