write SQL queries for creat database test
Answers
Answered by
3
The following example creates a table called "Persons" that contains five columns: PersonID, LastName, FirstName, Address, and City:
The following SQL statement creates a database called "testDB":
Answered by
1
Answer:
Use this:
CREATE DATABASE database_name:
Explanation:
- Create command is used to create tables as well as databases.
Similar questions