Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to guide database in mysql

2025-01-19 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)05/31 Report--

This article introduces how to guide the database in mysql, the content is very detailed, interested friends can use for reference, I hope it can be helpful to you.

1. Import to database

After creating an empty database

Go to the mysql installation directory bin

(1) Import command mysql-u root-p password database name Source d:\ ajswlw.sql

two。 Database export data file

(1) Export mysql database ajswlw

Enter the mysql installation directory C:\ Program

Files\ MySQL\ MySQL Server 5.5\ bin >

Mysqldump-h localhost-u root-p ajswlw > d:\ ajwlw.sql

(2) Export the tb_user table and data of mysql database ajswlw

Enter the mysql installation directory C:\ Program Files\ MySQL\ MySQL Server 5.5\ bin >

Mysqldump-h localhost-u root-p ajswlw tb_user > d:\ user.sql

(3) the structure of exporting mysql database ajswlw is not implemented.

Enter the mysql installation directory C:\ Program Files\ MySQL\ MySQL Server 5.5\ bin >

Mysqldump-h localhost-u root-p ajswlw-add-drop-table > d:\ stru.sql

Basic operation of 3.mysql

Create database ajswlw

Create table tb_user

Show tables

Desc tb_user

4.mysql has a limit on the size of the imported file, up to 2m, and the configuration can be modified.

Modify the parameter in php.ini: memory_limit=128M,upload_max_filesize=2M,post_max_size=8M

Modify upload_max_filesize=200M;memory_limit=250M, post_max_size=2000M

On how to guide the database in mysql to share here, I hope the above content can be of some help to you, can learn more knowledge. If you think the article is good, you can share it for more people to see.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report