摘要: MySQL:众多关系型数据库中的一种仓库 --数据库箱子 --表数据库:进入mysql 命令行: mysql -uroot -p查看所有数据库: show databases;创建数据库: create database niu charset utf8;删除数据库: drop database n 阅读全文
posted @ 2017-01-06 18:42 HK1537 阅读(54841) 评论(0) 推荐(3) 编辑
摘要: 1、创建students表mysql> create table students ( -> id int(10) auto_increment unique primary key, -> name varchar(20) not null, -> sex varchar(4), -> age i 阅读全文
posted @ 2017-01-06 18:26 HK1537 阅读(924) 评论(0) 推荐(0) 编辑