I have a table with following fields:
ID,tomato1,tomato2,tomato3
tomato1,2,3
are text columns.
Each tomato1
entry is unique, ID is autoincrement int, everything else is VARCHAR
I am given tomato1 only.
I am using the query:
SELECT * WHERE tomato1='whatever'
I hear some people on the internet who say don't use SELECT *
so I want to ask, Is this a bad way to do this? IS there a more efficient query code/method?