Hi, what is the database server you are using?
If it is sql server then try using in place parameters, will be easier for you: INSERT INTO Persons (Name, City) VALUES (@Name, @City)
Hi @bcorrea, I am using PostgreSQL and the table is an existing table so unfortunately I can’t change the column name.
Here is the script directly from the pgAdmin:
INSERT INTO public.t_redeem(redeem_id, redeemed_reward, redeemed_point, qty_redeem, “current_user”, current_status, created_on)
@AlfonGio Can you just click on OK and check if the Error goes off. Sometimes since there are multiple lines used, It marks it as an Invalid expression. Try it and let us know