create table items ( item_id integer, name_iro text, name_jro text, nslots integer ); .mode tabs .import items.txt items update items set nslots = null where nslots = ''; update items set name_jro = null where name_jro = ''; update items set name_iro = null where name_iro = '';