Create a table for the information given below by choosing appropriate data type . Specify proper primary key for the table student
Answers
Answered by
2
Answer:
Explanation:
create table student(
std_id (Number) Primary_Key Auto_Increment,
std_name (VarChar),
std_course (VarChar),
std_address (VarChar))
Similar questions