why not stick it in one table?
here's an example
table1
id integer
foo varchar(5)
table2
id integer
bar longtext -- or similar "large" datatype
suppose you combined these but most of your queries just needed foo, not bar
the combined rows are larger, therefore fewer of them on a physical block on disk, therefore more disk reads to scan the table, therefore slower query
or something like that
