mysql 学习笔记二 (mysql 创建数据库和表)

一。首先登陆

mysql -u root -p

enter passowrd: 123

 

二创建数据库

create database 数据库名

eg:create database new;

注意每句命令后要输入一个";"。

 

三。指定使用的数据库

use 数据库名

eg: use new

 

四。创建表

CREATE TABLE newtable (                                                
          id int(11) NOT NULL AUTO_INCREMENT,                             
          name varchar(20) NOT NULL, 
          PRIMARY KEY (id)                                               
        ) ENGINE=MYISAM DEFAULT CHARSET=utf8

 

id 和name为字段;

AUTO_INCREMENT为自动增长,默认为1;

PRIMARY KEY (`id`)  设置id为主键;

ENGINE :设置表类型;

CHARSET:设置表编码;

 

具体信息

C:/Documents and Settings/FENGJIAN>mysql -u root -p
Enter password: ***
Welcome to the MySQL monitor.  Commands end with ; or /g.
Your MySQL connection id is 17
Server version: 5.1.37-community MySQL Community Server (GPL)

Type 'help;' or '/h' for help. Type '/c' to clear the current inpu

mysql> create database new
    -> ;
Query OK, 1 row affected (0.01 sec)

mysql> use new
Database changed
mysql> CREATE TABLE newtable(
    -> id int(4) NOT NULL AUTO_INCREMENT,
    -> name varchar(20) NOT NULL,
    -> PRIMARY KEY (id)
    -> ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
Query OK, 0 rows affected (0.00 sec)

mysql> describe newtable;
+-------+-------------+------+-----+---------+----------------+
| Field | Type        | Null | Key | Default | Extra          |
+-------+-------------+------+-----+---------+----------------+
| id    | int(4)      | NO   | PRI | NULL    | auto_increment |
| name  | varchar(20) | NO   |     | NULL    |                |
+-------+-------------+------+-----+---------+----------------+
2 rows in set (0.00 sec)

mysql>

describe newtable:显示表信息

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值