I have a table called daily_key_value_dma_summary. It has some rows around 1Mill.
But when the fire the below EXPLAIN, It is showing rows bing scanned is 0.
EXPLAIN select key_value_pair_bridge_dim_id from daily_key_value_dma_summary limit 10 ;
When I execute the same with out EXPLAIN, it is resulting 10 records.
select key_value_pair_bridge_dim_id from daily_key_value_dma_summary limit 10 ;
Thanks in advance.