MySQL创建数据库并且插入数据

1.创建数据库完整的写法,创建shopping的数据库
mysql> CREATE DATABASE IF NOT EXISTS shopping DEFAULT CHARSET UTF8 COLLATE utf8_general_ci;

2.进入shopping数据库里面
mysql> use shopping;

3.创建数据表
create table if not exists phone (
id int,
name varchar(100) not null,
configure varchar(255) not null,
os varchar(100) not null,
price int not null,
primary key (id)
)engine=innodb default charset=utf8;

4.查看现有的数据表
mysql> show tables;

5.查看数据表信息
mysql> desc phone;

6.插入商品数据
mysql> insert into phone(id,name,configure,os,price) values(1,‘小米11‘,‘晓龙888处理器,1亿像素,55w快充‘,‘Android‘,3799),(2,‘华为mate40‘,‘麒麟990处理器,5000万像素‘,‘Android‘,5799),(3,‘Appleiphone12‘,‘A处理器,1200万像素,专有充电器‘,‘ios‘,6799);

7.查询插入数据
mysql> select * from phone;
+----+---------------+----------------------------------------------+---------+-------+
| id | name | configure | os | price |
+----+---------------+----------------------------------------------+---------+-------+
| 1 | 小米11 | 晓龙888处理器,1亿像素,55w快充 | Android | 3799 |
| 2 | 华为mate40 | 麒麟990处理器,5000万像素 | Android | 5799 |
| 3 | Appleiphone12 | A处理器,1200万像素,专有充电器 | ios | 6799 |
+----+---------------+----------------------------------------------+---------+-------+
3 rows in set (0.00 sec)

这么以来我们就创建出来了属于自己的shopping数据库,并且在数据库里面创建了属于自己的第一个phone手机表,
且插入了三个商品信息

MySQL创建数据库并且插入数据

上一篇:Mysql8.0.17压缩包安装——超详细简单教程


下一篇:Linux安装MySQL5.5.48 rpm