I have a SQLite db with a table named patients.
The table columns are fname, lname,mname and fullname.
The fullname column is blank.
I want to Update the column using the data from fname,lname and middle name.
I have tried the following SQL Statement:
UPDATE patient
set fullname=lname+','+fname+','+mname;
but I get "0" in the fullname column.
What is the correct syntax to accomplish this task?
TIA