Mysql – Query Performance difference select * or specific columns
If I have a table Application_user with 100 columns, what is the performance difference between two queries: Query 1: select * from Application_user; Query 2: select a.col1.a.col2,a.col3........ from Application_user a; Performance difference between two queries. And reason behind it