码迷,mamicode.com
首页 > 数据库 > 详细

MySQL 常用命令

时间:2016-01-22 14:01:50      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:

1.    mysqld -install;                //装载MySQL
2.    net start mysql;                //启动MySQL
3.    create database student;        //创建数据库
4.    show databases;                 //查看所有数据库
5.    use student;                    //使用当前数据库
6.    describe student;                 //查看表头详情信息
7.    mysql> create table students        //创建数据表
        -> (
        -> id int unsigned not null auto_increment primary key,
        -> name char(8) not null,
        -> set char(4) not null,
        -> age tinyint unsigned not null,
        -> tel char(13) null default "-");
8.    show tables;                    //查看所有表

MySQL 常用命令

标签:

原文地址:http://www.cnblogs.com/mypsq/p/5150784.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!