1

CREATE_PARENT_M_LIST テーブルの主キーを CREATE_CHILD_M_LIST への外部キーとして設定する方法

ここに私の質問があります。

// My parent table.
public static String CREATE_PARENT_M_LIST = "create table if not exists "+
DATABASE_TABLE1 + " ( p_id integer primary key autoincrement, "
        + "table_name text);"; 

// my child table.
public static String CREATE_CHILD_M_LIST = "create table if not exists "
        + DATABASE_TABLE2 + " ( id integer primary key autoincrement, "
        + " symbol text," + " f_id integer," 
        + " foregin key(f_id) references " + DATABASE_TABLE1 + "(p_id));";

f_id 列の近くで構文エラーが発生しています

前もって感謝します。

4

1 に答える 1

1

スペルミスがあるため:

foregin key(f_id) references 

に変更します

foreign key(f_id) references 
于 2013-07-30T08:39:02.960 に答える