Computer Science, asked by kaurayana, 1 month ago

how to make DBMS above table???​

Attachments:

Answers

Answered by saransrini03
1

CREATE DATABASE  sport;

CREATE TABLE table_name (

   column_name column_type,

   column_name column_type,

);

Answered by r27272278
1

CREATE DATABASE sport;

CREATE TABLE table_name(

column_name column_type;

column_name column_type;

);

Similar questions