update SQLite database using insert

조회 수: 1 (최근 30일)
Charles
Charles 2017년 9월 18일
편집: Guillaume 2017년 9월 22일
Hello I am trying to update my SQLite database using the following command
insert(conn, 'ClosePriceTable', {'Dates','AUD_CAD', 'AUD_CHF'}, Table_New_datax(2:end,:))
However I rather want to update only if new records are different to current records. Thus I do not want duplicate records in my SQLite database. If the new records are the same as current records then I merely wish to overwrite and not insert the same record again.
The key variable differentiating records is the date.
How can I avoid duplication of records? What command can I use?

답변 (1개)

Han Du
Han Du 2017년 9월 22일
Duplicates can be avoid by setting Dates to UNIQUE in your query to create the table.
  댓글 수: 2
Charles
Charles 2017년 9월 22일
Csn you provide an example as I am new to SQL
Guillaume
Guillaume 2017년 9월 22일
편집: Guillaume 2017년 9월 22일
See the SQLite doc
Something like:
CREATE TABLE yourtable (Dates UNIQUE ON CONFLICT REPLACE, ...)
when you create the table.
Note that the ON CONFLICT REPLACE is particular to SQLite, it is not standard SQL. Other database engines will abort the transaction instead of replacing the existing row by your new values. Therefore the other way to do what you want is to first check if your keys already exist in database and do an UPDATE for the ones that do.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Database Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by