Computer Science, asked by saheli89, 10 months ago

write a steps to create table na med student's detail in database​

Answers

Answered by Anonymous
2

#mySql query

#to creat database

create database school;

#To create table

use school;

create table student

(

roll_no integer(4),

name char(10),

class char(4)

);

ok, query

Answered by namoarihantanam
1

what is na med?

did you mean sql database?

foir that you have to use command - create table student;

Similar questions