I am trying to use the INSERT or REPLACE syntax in SQLite without success as the rows are not inserted.
My request to create a table
create table providers (provider_id text not null, provider_name text not null, provider_channel_id text not null, channel_name text not null);CREATE UNIQUE INDEX channel_id ON providers (provider_channel_id);
My INSERT or Replace request
INSERT OR REPLACE INTO providers (provider_channel_id, channel_name, provider_id, provider_name) VALUES ('1', '2', '3', '4')
thank
source
share