Be gentle with me. I'm far from an expert.
I have a perl-based application that uses a table with about 50 fields. When I have a user input their information, the insert statement is fairly simple:
insert into customers values ($name, $address, $city ...
If I want them to update their information, I give them a similar input screen with the current information filled in from the database. They alter what needs to be changed, and the target perl script must enter a statement something like this:
update customers set name=$name, address=$address, city=$city ...
This can get very long. Is there a more streamlined way to do this update, more along the lines of the insert command: values($name, $address, $city ...)
Thanks in advance for any help.