how to avoid duplicate records in sqlite
INSERT OR REPLACE INTO MAIN (...) VALUES (...)how to avoid duplicate records in sqlite
INSERT OR REPLACE INTO MAIN (...) VALUES (...)how to avoid duplicate records in sqlite
CREATE TABLE MAIN
   (
   NAME           TEXT    NOT NULL,
   Error_List          CHAR(50),
   Warning_List        CHAR(50),
   Advice_List         CHAR(50),
   Total          CHAR(50),
   Note           CHAR(50),
UNIQUE (NAME, Error_List, Warning_List, Advice_List, Total, Note) ON CONFLICT IGNORE
);Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us
