Quiz question choices: Difference between revisions
Jump to navigation
Jump to search
(Created page with "{| class="wikitable" !Name !!Datatype !!Description ! |- !id |INT(11) |unique identifier for the record |- !question_id |INT(11) |the unique identifier for the question |- !tx...") |
No edit summary |
||
| Line 1: | Line 1: | ||
{| class="wikitable" | == Quiz Question Choices Variable Documentation (Reimplementation) == | ||
{| class="wikitable" | |||
!Name !!Datatype !!Description ! | |||
|- | |||
!id | |||
|INT(11) | |||
|unique identifier for the record | |||
|- | |||
!question_id | |||
|INT(11) | |||
|the unique identifier for the question | |||
|- | |||
!txt | |||
|TXT | |||
|The description for the question | |||
|- | |||
!is_correct | |||
|TINYINT(1) | |||
|to check whether it is correct or not | |||
|} | |||
== Quiz Question Choices Variable Documentation (2023 version) == | |||
{| class="wikitable" | |||
!Name !!Datatype !!Description ! | !Name !!Datatype !!Description ! | ||
|- | |- | ||
! | !id | ||
|INT(11) | |INT(11) | ||
|unique identifier for the record | |unique identifier for the record | ||
| Line 17: | Line 41: | ||
|BIT | |BIT | ||
|to check whether it is correct or not | |to check whether it is correct or not | ||
|} | |} | ||
== E/R diagram for Parents Tables == | == E/R diagram for Parents Tables == | ||
No Tables were referred by the Schema Migrations Table as Foreign Key Relationship. | No Tables were referred by the Schema Migrations Table as Foreign Key Relationship. | ||
== E/R diagram for Child Tables == | == E/R diagram for Child Tables == | ||
No Tables were referred by the Schema Migrations Table as Foreign Key Relationship. | No Tables were referred by the Schema Migrations Table as Foreign Key Relationship. | ||
Back to [http://wiki.expertiza.ncsu.edu/index.php/Documentation_on_Database_Tables Database Tables] Main page. | Back to [http://wiki.expertiza.ncsu.edu/index.php/Documentation_on_Database_Tables Database Tables] Main page. | ||
Latest revision as of 03:24, 9 December 2025
Quiz Question Choices Variable Documentation (Reimplementation)
| Name | Datatype | Description ! |
|---|---|---|
| id | INT(11) | unique identifier for the record |
| question_id | INT(11) | the unique identifier for the question |
| txt | TXT | The description for the question |
| is_correct | TINYINT(1) | to check whether it is correct or not |
Quiz Question Choices Variable Documentation (2023 version)
| Name | Datatype | Description ! |
|---|---|---|
| id | INT(11) | unique identifier for the record |
| question_id | INT(11) | the unique identifier for the question |
| txt | TXT | The description for the question |
| iscorrect | BIT | to check whether it is correct or not |
E/R diagram for Parents Tables
No Tables were referred by the Schema Migrations Table as Foreign Key Relationship.
E/R diagram for Child Tables
No Tables were referred by the Schema Migrations Table as Foreign Key Relationship.
Back to Database Tables Main page.