我與SQLite數據庫工作。我有一個表,其中包含2個其他表的主鍵作爲外鍵;我想刪除其中的一個。下面是表的代碼:如何刪除sqlite中的外鍵?
protected static final String Item_places=(" CREATE TABLE "
+ Item_place + "("
+ place_id + " INTEGER ,"
+ Item_id + " INTEGER ,"
+ "FOREIGN KEY("+place_id+ ") REFERENCES " + PlaceTable + "("+ PlaceID+ ") ON DELETE CASCADE"
+ "FOREIGN KEY("+Item_id+ ") REFERENCES "+ contentTable+ "("+contentID+"));");