How to add data to the mysql table

1, we open the Mysql command line editor, Mysql database connection;

2, we have to use the database operation, we can first look at the display tables in the database;

3, showing off a little table structure, look at the columns in the table;

4, insert data into the table, insert into the table names (column names) values ​​(value);

5, look-up table, we can see inserted data, select * from table name;

6, can then insert a data bit display.

Extended Information:

Structured Query Language (Structured Query Language) referred SQL (pronunciation: / es kjuː el / "SQL"), is a special-purpose programming language, is a database query and programming language used to access and query data , update and manage a relational database system; but also the database script file name extension.

Structured Query Language is an advanced non-procedural programming language that allows users to work on high-level data structures. It does not require the user to specify the data storage method, the user does not need to know the specific data storage method, the database system is completely different with different underlying structure, the same can be used as a structured query language data input and management interfaces. Structured Query Language statements can be nested, which makes it great flexibility and powerful features.

Published 51 original articles · won praise 9 · views 40000 +

Guess you like

Origin blog.csdn.net/weixin_39891030/article/details/101292278