Computer Science, asked by anedxbbutt3928, 9 months ago

Create a table for the information given below by choosing appropriate data type . Specify proper primary key for the table student

Answers

Answered by mohammads
2

Answer:

Explanation:

create table student(

std_id (Number) Primary_Key Auto_Increment,

std_name (VarChar),

std_course (VarChar),

std_address (VarChar))

Similar questions