SQL Create Table

In this chapter you will learn:
About create table
Syntax of create table
Example of create table

About create table

SQL statement create table is used to create a new table in a database. You can create a table in the system defined database or a database you have created.

Syntax of create table

  1. create table student_info
  2. (
  3. value data-type,
  4. value data-type
  5. )

Example of create table

  1. create table employee
  2. (
  3. emp_name varchar(20),
  4. emp_age int,
  5. emp_mobile_no bigint
  6. )
create table

table with column name emp_name, emp_age and emp_mbile_no has created as-

create table result SUMMARY

In this chapter, you have learned how to create a table so now you can create a table with this command. In the next chapter you will learn about rename table.

 

Share your thought