Design. Inherited a flat-ish table with 96 columns, most of which are NULL. Many of those which do contain data are of type "string" but the data is basically numeric; no constraints were placed on the input, so I've spent hours doing things like:
update some_table set sales_volume = '1000000' where sales_volume in ('1m', '1M', '1 M', '1 m', '1 mil') ....
