Home > Database > Mysql Tutorial > body text

mysql 基础命令入门学习_MySQL

WBOY
Release: 2016-06-01 13:35:19
Original
1045 people have browsed it

bitsCN.com

 

登陆到mysql mysql -u 用户名 -p [数据库]   显示数据库 show databases;   使用一个数据库 use 数据库名;   显示表 show tables;   纠正数据库编码 set names '编码';   创建一个数据库 create database '库名';   创建一个表 create table 表名(  字段名 类型(长度) 参数,  ....,  ....  );   退出mysql quit;   ======================= 备份导出 mysqldump -u 用户名 -p 数据库 > 路径+文件名   导入>>>> 1、创建一个库 2、进入这个库 3、source 路径+文件名                             bitsCN.com
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template