Preamble
Before starting to create an SQL table, it is necessary to define the database model. Design an ER diagram in which to define the entities, attributes, and relationships.
Basic concepts
Essences – objects or facts, information about which should be kept. For example, an employee of a company or project implemented by the company. Attributes – a component that describes or qualifies an entity. For example, an attribute of an entity “employee” – salary and attribute of an entity “project” – estimated value.
Links – associations between two elements. It may be bidirectional. There is also a recursive connection, i.e. the connection of the entity with itself.

It is also necessary to define the keys and conditions under which the database integrity will be preserved. What does it mean? In other words, it means the constraints that will help keep the databases in a correct and consistent form.
The transition from the ER-diagram to the tabular model
Rules of transition to a tabular model:
- Convert all entities into tables.
- Convert all attributes into columns, i.e. each attribute of an entity must be displayed in the column name of the table.
- Convert unique identifiers to primary keys.
- Convert all relations into external keys.
- Create an SQL table.
Creating the Base
First, you need to run the MySQL server. To start it, go to the Start menu, then to Programs, then to MySQL and MySQL Server, select MySQL-Command-Line-Client.
The Create Database command is used to create a database. This function has the following format:
CREATE DATABASE Database_name
- The restrictions on the database name are as follows: the length is up to 64 characters and may include letters, digits, ” and “;
- the name may start with a digit but must contain letters.

You should also remember the general rule: any query or command ends with a delimiter. In SQL it is common to use a semicolon as a delimiter. The server shall specify which database it shall work with. The USE operator shall be used for this purpose. This operator has a simple syntax:
USE name_database_data
Create an SQL table
So, the model is designed, the database is created and the server is instructed how to work with it. Now you can start creating SQL tables. There is a data definition language (DDL). It is used to create an MS SQL table, and also to define objects and work with their structure. DDL includes a set of commands.
SQL Server to create a table
Using only one DDL command, you can create different database objects by varying its parameters. The Create Table command is used to create an SQL table. The tt format is as follows:
CREATE TABLE name_table, (column_name1 data type [DEFAULT expression] [column_limit], column_name2 data type [DEFAULT expression] [column_limit], [table_limit])

The syntax of this command should be described in more detail:
- The name of the table must be up to 30 characters long and start with a letter. Only characters of the alphabet, letters, and “_”, “$” and “#” are allowed. Cyrillic characters are allowed. It is important to note that the table names shall not coincide with the names of other objects and the reserved words of the database server, such as Column, Table, Index, etc.
- The data type shall be specified for each column. There shall be a standard set used by the majority. For example, Char, Varchar, Number, Date, Null type, etc.

- With the Default parameter, you can set the default value. This ensures that there are no undefined values in the table. What does it mean? The default value can be a symbol, an expression, a function. It is important to remember that the type of these defaults should be the same as the type of data entered in the column.
- Restrictions on each column are used to implement integrity conditions for data at the table level. There are other nuances. It is forbidden to delete a table if there are other tables dependent on it.
How to work with the database
Large projects often require the creation of several databases, and each requires many tables. Of course, it is impossible for users to keep all information in their heads. For this purpose, there is an option to view the structure of databases and tables in them. There are several commands, namely:
- SHOW DATABASES – shows all created SQL databases on the screen;
- SHOW TABLES – displays the list of all tables for the current database, which are selected by the USE command;
- DESCRIBE name_table – displays the description of all columns in the table;
- ALTER TABLE – allows you to change the table structure.
The last command enables you to: add a column or a restriction to the table; change an existing column; delete a column or columns; delete integrity restrictions. The syntax of this command looks like this:
ALTER TABLE column_name { [ADD column_name or restriction] | [MODIFY column_name] | [DROP column_name_removeable_limit] | [{ENABLE | DISABLE} CONSTANT name_limit ] | }.
There are other commands as well:
- RENAME – rename the table
- TRUNCATE TABLE – removes all rows from the table. This function may be needed when you need to fill the table anew and there is no need to store the previous data.
There may also be situations when the database structure has changed and the table shall be deleted. The DROP command shall be used for this purpose. Of course, you shall first select the database from which the table shall be deleted if it differs from the current one.
The syntax of the command is quite simple:
DROP TABLE name_table

In SQL Access, creating tables and modifying them is done with the same commands listed above.
With CREATE TABLE you can create an empty table and fill it with data later on. But that’s not all. You can also immediately create a table from another table. How does it work? In other words, you can define a table and fill it with data from another table. For this purpose, there is a special keyword AS.
The syntax is very simple:
CREATE TABLE name_table [(column_definition)] AS subquery;
- column_definition – column names, integrity rules for columns of the newly created table and default values;
- subquery – returns the rows to be added to the new table.
Thus, this command creates a table with specific columns, inserts rows that are returned in the query.
Time tables
Temporary tables are tables in which data is erased at the end of each session or earlier. They are used to record intermediate values or results. They can be used as worksheets.
Temporary tables can be defined in any session, and their data can only be used in the current session. Creation of temporary SQL tables is similar to the usual one, using the CREATE TABLE command. To show the system that a table is temporary, you need to use the GLOBAL TEMPORARY option.

The ON COMMIT offer sets the lifetime of data in such a table and can perform the following actions:
- DELETE ROWS – clear the temporary table (delete all session data) after each end of the transaction. Usually this value is used by default.
- PRESERVE ROWS – leave data to use in the next transaction. In addition, you can clear the table only after the end of the session. But there are features. If there is a rollback of a transaction (ROLLBACK), the table will be returned to the end of the previous transaction.
The syntax for creating a temporary table can be represented in this way:
CREATE [GLOBAL TEMPORARY] TABLE name_table, (column_name1 data type [DEFAULT expression] [restriction_column], column_name2 data type [DEFAULT expression] [restriction_column], [restriction_table]).
About Enteros
IT organizations routinely spend days and weeks troubleshooting production database performance issues across multitudes of critical business systems. Fast and reliable resolution of database performance problems by Enteros enables businesses to generate and save millions of direct revenue, minimize waste of employees’ productivity, reduce the number of licenses, servers, and cloud resources and maximize the productivity of the application, database, and IT operations teams.
The views expressed on this blog are those of the author and do not necessarily reflect the opinions of Enteros Inc. This blog may contain links to the content of third-party sites. By providing such links, Enteros Inc. does not adopt, guarantee, approve, or endorse the information, views, or products available on such sites.
Are you interested in writing for Enteros’ Blog? Please send us a pitch!
RELATED POSTS
How to Enable Intelligent Wealth Management Operations with Enteros Generative AI and Database Intelligence
- 16 June 2026
- Database Performance Management
Introduction The wealth management industry is undergoing a significant transformation driven by digital innovation, evolving client expectations, regulatory complexity, and the rapid adoption of artificial intelligence. Modern wealth management firms are expected to deliver highly personalized financial services while managing increasing volumes of client, portfolio, market, and operational data. Today’s wealth management organizations rely on … Continue reading “How to Enable Intelligent Wealth Management Operations with Enteros Generative AI and Database Intelligence”
How Autonomous Database Optimization Enhances Cloud-Native Application Performance
Cloud-native applications have transformed how modern enterprises build, deploy, and scale digital services. By leveraging microservices, containers, Kubernetes orchestration, serverless architectures, and elastic cloud infrastructure, organizations can innovate faster and respond dynamically to changing user demands. However, while application layers have become increasingly agile, the database layer often remains one of the most complex performance … Continue reading “How Autonomous Database Optimization Enhances Cloud-Native Application Performance”
How to Improve Media Platform Scalability with Enteros Database Software and Cost Intelligence
Introduction The media and entertainment industry is experiencing unprecedented digital growth. Streaming platforms, digital publishers, content distribution networks, broadcasting organizations, gaming companies, and media technology providers are serving larger audiences than ever before. Modern media organizations rely on complex digital infrastructures to support: Video streaming platforms Content management systems Digital publishing applications Advertising technology platforms … Continue reading “How to Improve Media Platform Scalability with Enteros Database Software and Cost Intelligence”
Why Database Performance Intelligence Is Critical for Modern Enterprise Scalability
Modern enterprises operate in an increasingly digital-first economy where application performance directly influences customer satisfaction, revenue generation, and competitive advantage. Whether powering e-commerce transactions, digital banking, SaaS platforms, healthcare systems, or real-time analytics, databases remain the foundation of nearly every critical business application. As organizations scale, database environments become more complex. Enterprises often manage thousands … Continue reading “Why Database Performance Intelligence Is Critical for Modern Enterprise Scalability”