Computer Science, asked by varshasreed, 1 year ago

Creat a student with table give below details
Student ID char (4) primary key

S name varchar 15
Address varchar 20
Moblie no number 10

Answers

Answered by vikrantdeshwal2
1

as an example-- The following example creates a table called "Persons" that contains five columns: PersonID, LastName, FirstName, Address, and City:

Example

CREATE TABLE Persons (

PersonID int,

LastName varchar(255),

FirstName varchar(255),

Address varchar(255),

City varchar(255)

);

Similar questions