Expensive full table scan on select all without condition
问题 I have a wide table with 210 columns (This might be a bad structure but all data is needed every time). There is a primary type index for the primary key. Now when I do select * from my single table without any condition. It results in a full table scan. It says the following: no useable indexes were found for the table This also means the search range is so broad that the index is useless. What could I do to avoid this full table scan? Note: I need all the information every time so breaking