I need to insert a new row into the claim table. I have tried many other ways but non of them work. What I have now is
INSERT INTO claimant_type
SELECT ('3'
, col1
, '18'
, 'ility'
, col4
, col5
, col6)
FROM claim
WHERE col4 = '8'
When I execute this script, it said ---- Incorrect syntax near ','. which is '3' or col1.