In MYSQL for creating VIEWs
If I write the SELECT * FROM ... as a VIEW
will the view store it forever as * or will it actually choose the current columns and store the query as that (as in instead of storing SELECT *
it will store SELECT foo,bar,biz
etc.)
I have read multiple times that using SELECT * FROM ...
is bad practice for various reasons including those mentioned HERE and HERE. So i do wish to avoid those problems.