Computer Science, asked by mubassircool605, 1 year ago

Write an sql query to create a table 0

Answers

Answered by Anonymous
1

create by using this

"CREATE TABLE" is the one responsible for the creation of the table in the database.

"[IF NOT EXISTS]" is optional and only create the table if no matching table name is found.

"`fieldName`" is the name of the field and "data Type" defines the nature of the data to be stored in the field.

"[optional parameters]" additional information about a field such as " AUTO_INCREMENT" , NOT NULL etc

.

one example for that

Attachments:
Similar questions