Computer Science, asked by mspatnaik, 11 months ago

Write the SQL query to create a table 'Student' with above data.​

Attachments:

Answers

Answered by Shubhgyanji
13

Answer:

CREATE TABLE statement is used to create a table in MySQL

Attachment contains command of Student table.

Explanation:

Attachments:
Answered by AskewTronics
1

Below are the query to create a table for the above data :-

Explanation:

CREATE TABLE Student ( Admno char(4), SName varchar(20), DateofBrith date, Address

  • When a user executes the above query then he gets a result of a database that includes the above structure.
  • It is because the above is a syntax to create a table in any database.
  • But the user needs to select any database before using this query for the MYSQL database.

Learn More:

  • Create a table : https://brainly.in/question/8476254
Similar questions