Mysql
 sql >> Cơ Sở Dữ Liệu >  >> RDS >> Mysql

nhập tệp sql vào cơ sở dữ liệu bằng wamp

Tùy chọn 1; PHPMyAdmin

1. left click wamp -> phpmyadmin
2. select database then click import (top right)
3. locate the database and click go.

Tùy chọn 2; Sử dụng dòng lệnh.

Cách dễ nhất để nhập tệp sql vào cơ sở dữ liệu trong WAMP, sử dụng dòng lệnh như sau:

1. Open Command Prompt (CMD - DOS) get into the mysql folder, which in my case works like this
C:\> cd C:\wamp\bin\mysql\mysql5.0.51b\bin

2. Then use this command to fire up MySQL
   This line basically connects you to the mysql database of your choice.
   (-p for password if you have one)
C:\wamp\bin\mysql\mysql5.0.51b\bin> mysql.exe -use databasename -u username -p

3. To make things easier, copy the SQL file into the same folder as mysql.exe, and then run this
mysql> source myfilename.sql;


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Chỉ mục MySQL 5.0 - Duy nhất so với Không duy nhất

  2. Thêm trường DATE và TIME để nhận trường DATETIME trong MySQL

  3. Làm cách nào để thay đổi giá trị cho innodb_buffer_pool_size trong MySQL trên Mac OS?

  4. SQL Server 2008 R2 sang MySQL Migration

  5. Làm cách nào để tìm ra bộ ký tự máy chủ mặc định trong mysql?