Computer Science, asked by qwezud142, 7 months ago

7. Create a table salled student containing the following table
Field Name Data Type
Roll No. Number
St. Name Text
English Number
Mathematics Number
Physics Number
Chemistry Number
Biology Number​

Answers

Answered by DarkShadow040
1
CREATE TABLE STUDENT (roll_no INT(10), st_name TEXT(50), english INT(10), mathematics INT(10), physics INT(10), chemistry INT(10), biology INT(10));
Similar questions