What is the CREATE statement?
Are you preparing for IT certification? With practice questions, study notes, interactive quizzes, tips and technical articles, uCertify PrepKits ensure that you get a solid grasp of core technical concepts to ace your certification exam in first attempt.
What is the CREATE statement?
Rating:
The CREATE statement is a SQL statement used to create database objects such as tables, views, procedures, triggers, etc. These objects can be used later to insert, retrieve, or update data in a database. The syntax for creating a table is as follows:
(
column1 datatype,
column2 datatype,
column3 datatype
)
Rating:
Was this information helpful?
Other articles
- What is the SELECT statement?
- What is an online store?
- What are affiliate programs?
- What is a help desk?
- What is the SQL UPDATE statement?