I am using SQLite GUI Browser to work with the database. I can't find any button to make primary key on two or mor开发者_开发问答e columns. How to do this?
SQLite does not support adding a constraint.
You have to create a new table, specifying its whole column structure, and import old data into the new table. Then remame the new one, after having dropped the old one.
精彩评论