Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Hi I have the following data

1    aaaa       
2    bbbb     
1    aaaa
3    cccc
2    bbbb
3    cccc

I want to import the above data to a SQLite like this

1    aaaa
2    bbbb
3    cccc

The same numbers must be imported once.

How can I do this?

share|improve this question

1 Answer

up vote 0 down vote accepted

Create the table with:

CREATE TABLE T1 
ID     INTEGER PRIMARY KEY AUTOINCREMENT,
C1     VARCHAR(60) UNIQUE

And then use the

insert or replace into T1 (C1) values ( ... )
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.