You should login or register.

Goofy
  • 04/03/2019 14:00
  • 2

How to create table in mysql command line?


Alex S.
  • 04/03/2019 18:59

It is very simple. Tables are created using standard sql commands. And there is no difference whether you work with the base via the command line or through some kind of environment (developer / toad / etc). Creating a table will still look the same. Just through the console is more convenient.

Foma
  • 04/03/2019 18:54

You can use something like this: CREATE TABLE [IF NOT EXISTS] table_name( column_list ) ENGINE=storage_engine Engine - you can use MyISAM or INNODB. [IF NOT EXIST] just for more safe mode if table already exist just skip it just for prevent error in case table exist

Same questions:

Good afternoon, I found a forum on the Internet, I would like to ask about the work of the JavaScript interpreter, what are its advantages and disadvantages? How to set it up correctly?

Hello, it is Known that MySQL has its own advanced SQL functions. How important are they and what additional functionality do they provide to users?

Share with your friends

Loading...