php選擇題資料庫如何設計
php選擇題資料表可以設計如下:
E-R圖
選擇題資料表
列名 | 說明 | 資料型別 | 約束 |
ChoiceQst_id | 試題號 | tinyint | not null IDENTITY(1, 1) primary key |
ChoiceQst_Question | 題型號 | int | not null foreign key |
ChoiceQst_Info | 內容 | text | not null |
ChoiceQst_OP1 | 操作1 | text | not null |
ChoiceQst_OP2 | 操作2 | text | not null |
ChoiceQst_OP3 | 操作3 | text | not null |
ChoiceQst_OP4 | 操作4 | text | not null |
ChoiceQst_answ | 答案 | char | not null |
以上就是php選擇題資料庫如何設計的詳細內容,更多請關注TW511.COM其它相關文章!