Hello. I have a database in which columns change from time to time (added, deleted). A php script is committed to doing UPDATE commands. So, I basically need this: if there is a column and a record, they are updated, but if they are not there, then nothing happens.
Actually the question is: is it possible to access the database without checking, so that if there is no column, then an error would occur and not to react to it? Or do you need to do checks? Then there will be no mistakes, but there will be performance costs. How is more correct?