MySql 创建/删除数据库
C:\Users\Mr.Black>mysql -u root -p
Enter password: ****
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 3
Server version: 5.7.17 MySQL Community Server (GPL)
Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> show databases;
+----------------------+
| Database |
+----------------------+
| information_schema |
| a_stock |
| allstuid |
| dagang1 |
| dagang2 |
| duxue |
| mxonline |
| mysql |
| performance_schema |
| rail_freightdb |
| shijiazhuangdianping |
| studentdb |
| sys |
| test2 |
| xicai |
+----------------------+
15 rows in set (0.06 sec)
mysql> create database us_pwd;
Query OK, 1 row affected (0.02 sec)
mysql> show databases;
+----------------------+
| Database |
+----------------------+
| information_schema |
| a_stock |
| allstuid |
| dagang1 |
| dagang2 |
| duxue |
| mxonline |
| mysql |
| performance_schema |
| rail_freightdb |
| shijiazhuangdianping |
| studentdb |
| sys |
| test2 |
| us_pwd |
| xicai |
+----------------------+
16 rows in set (0.00 sec)
-----------------------------------------------
选择数据库
mysql> use us_pwd;
Database changed
------------------------------------------------
设置使用的字符集
mysql> set names utf8;
Query OK, 0 rows affected (0.00 sec)
-------------------------------------------------
建表
mysql> create table user_pwd( user_id int unsigned primary key not null auto_increment, name varchar(20) not null, password varchar(20) not null);
Query OK, 0 rows affected (0.37 sec)
-----------------------------------------------
读取数据表的信息
mysql> select * from user_pwd;
Empty set (0.00 sec)
-----------------------------------------------
向表中插入数据
mysql> insert into user_pwd (name,password) values ("chen","helloword!");
Query OK, 1 row affected (0.09 sec)
mysql> select * from user_pwd;
+---------+------+------------+
| user_id | name | password |
+---------+------+------------+
| 1 | chen | helloword! |
+---------+------+------------+
1 row in set (0.00 sec)
mysql> insert into user_pwd (user_id, name,password) values (2,"wang","helloword!");
Query OK, 1 row affected (0.09 sec)
mysql> insert into user_pwd values (3,"yang","123456");
Query OK, 1 row affected (0.08 sec)
mysql> insert into user_pwd values ("liu","root123"); # 错误!
ERROR 1136 (21S01): Column count doesn't match value count at row 1
mysql> insert into user_pwd values (4,"liu","root123");
Query OK, 1 row affected (0.08 sec)
mysql> insert into user_pwd (name,password) values ("alice","p@ssw0rd!");
Query OK, 1 row affected (0.12 sec)
mysql> select * from user_pwd;
+---------+-------+------------+
| user_id | name | password |
+---------+-------+------------+
| 1 | chen | helloword! |
| 2 | wang | helloword! |
| 3 | yang | 123456 |
| 4 | liu | root123 |
| 5 | alice | p@ssw0rd! |
+---------+-------+------------+
5 rows in set (0.00 sec)
------------------------------------------------
更新数据
mysql> update user_pwd set name="wang2", password="abcd123" where user_id="2";
Query OK, 1 row affected (0.08 sec)
Rows matched: 1 Changed: 1 Warnings: 0
mysql> select * from user_pwd;
+---------+-------+------------+
| user_id | name | password |
+---------+-------+------------+
| 1 | chen | helloword! |
| 2 | wang2 | abcd123 |
| 3 | yang | 123456 |
| 4 | liu | root123 |
| 5 | alice | p@ssw0rd! |
+---------+-------+------------+
5 rows in set (0.00 sec)
-----------------------------------------------
删除行数据
mysql> delete from user_pwd where name="yang" and password="root123"; # 这里and是且,要同时满足两个,而不是把含这俩的都删掉
Query OK, 0 rows affected (0.00 sec)
mysql> delete from user_pwd where name="yang" or password="root123"; #改成or就好了
Query OK, 2 rows affected (0.05 sec)
mysql> select * from user_pwd;
+---------+-------+------------+
| user_id | name | password |
+---------+-------+------------+
| 1 | chen | helloword! |
| 2 | wang2 | abcd123 |
| 5 | alice | p@ssw0rd! |
+---------+-------+------------+
3 rows in set (0.00 sec)
------------------------------------------------
删除一列
mysql> alter table user_pwd drop column name;
Query OK, 0 rows affected (0.90 sec)
Records: 0 Duplicates: 0 Warnings: 0
mysql> select * from user_pwd;
+---------+------------+
| user_id | password |
+---------+------------+
| 1 | helloword! |
| 2 | abcd123 |
| 5 | p@ssw0rd! |
+---------+------------+
3 rows in set (0.00 sec)
-----------------------------------------------
删除表里的数据
mysql> delete from user_pwd;
Query OK, 3 rows affected (0.05 sec)
mysql> create table user_pwd(user_id int unsigned primary key not null auto_increment,name varchar(20) not null,password varchar(20) not null);
ERROR 1050 (42S01): Table 'user_pwd' already exists # 可以看到表并没有被删除
mysql> show tables;
+------------------+
| Tables_in_us_pwd |
+------------------+
| user_pwd |
+------------------+
1 row in set (0.00 sec)
------------------------------------------------
删表
mysql> drop table if exists user_pwd;
Query OK, 0 rows affected (0.20 sec)
mysql> show tables;
Empty set (0.00 sec)
------------------------------------------------
删库
mysql> drop database us_pwd;
Query OK, 1 row affected (0.29 sec)
mysql> show databases;
+----------------------+
| Database |
+----------------------+
| information_schema |
| a_stock |
| allstuid |
| dagang1 |
| dagang2 |
| duxue |
| mxonline |
| mysql |
| performance_schema |
| rail_freightdb |
| shijiazhuangdianping |
| studentdb |
| sys |
| test2 |
| xicai |
+----------------------+
15 rows in set (0.00 sec)
MySql 创建/删除数据库的更多相关文章
- mysql 创建++删除 数据库
创建RUNOOB数据库,并设定编码集为utf8 CREATE DATABASE IF NOT EXISTS RUNOOB DEFAULT CHARSET utf8 COLLATE utf8_gener ...
- MySQL 创建删除和选择数据库
使用 create 命令创建数据库,语法如下: CREATE DATABASE 数据库名; 删除数据库 drop database <数据库名>; 选择数据库 use 数据库名 Datab ...
- php 创建删除数据库
<?php $dbhost = 'localhost:3306'; $dbuser = 'root'; $dbpass = ''; $conn = mysql_connect($dbhost, ...
- mysql创建/删除表的例子
创建表 简单的方式 CREATE TABLE person ( number INT(11), name VARCHAR(255), birthday DATE ); 或者是 CREATE TABLE ...
- mysql创建的数据库在电脑什么位置?
你可以在mysql 命令行里执行 show variables like '%datadir%'; 显示出你数据文件的路径,能找到以你创建的数据库的名字的文件夹了.
- mongodb的创建删除数据库
1.创建数据库 use 命令 MongoDB use DATABASE_NAME 用于创建数据库.该命令将创建一个新的数据库,如果它不存在,否则将返回现有的数据库. 语法: use DATABASE ...
- MongoDB自学------(2)创建删除数据库及集合
一.创建数据库 二.查看所有数据库 三.删除数据库 四.创建集合 五.删除集合 六.集合用法介绍 1.创建集合 2.删除集合 下一篇链接:https://www.cnblogs.com/LinHuCh ...
- mysql 如何删除数据库中所有的表
SELECT concat('DROP TABLE IF EXISTS ', table_name, ';')FROM information_schema.tablesWHERE table_sch ...
- PHP MySQL Delete删除数据库中的数据
PHP MySQL Delete DELETE 语句用于从数据库表中删除行. 删除数据库中的数据 DELETE FROM 语句用于从数据库表中删除记录. 语法 DELETE FROM table_na ...
随机推荐
- AngularJS定时器任务
由于项目需要监测用户在线时长,所以用定时器来实现. /*计算在线时长,一分钟执行一次*/ var stopEvent = $interval(function(){ //每分钟执行一次定时任务 $sc ...
- maven 打包报错
[INFO] Scanning for projects... [INFO] [INFO] ------------------------------------------------------ ...
- this.$apply()
chooseVideo(e) { this.fileInfo = {} let that = this wx.chooseVideo({ sourceType: ['album', 'camera'] ...
- SQLServer中行列转换Pivot UnPivot
PIVOT用于将列值旋转为列名(即行转列),在SQL Server 2000可以用聚合函数配合CASE语句实现 PIVOT的一般语法是:PIVOT(聚合函数(列) FOR 列 in (…) )AS P ...
- 笔记:zookeeper Hello World
下载zookeeper-3.4.6 , 试用了一下 standlone 启动 ./bin/zkServer.sh start 注: Usage: ./bin/zkServer.sh {start|st ...
- float 与 double
一.原因 单精度和双精度数值类型最早出现在C语言中,在C语言中单精度类型称为浮点类型(Float),顾名思义是通过浮动小数点来实现数据的存储.这两个数据类型最早是为了科学计算而产生的, 他能够给科学计 ...
- 爬虫,如何防止被ban之策略大集合
话说在尝试设置download_delay小于1,并且无任何其他防止被ban的策略之后,我终于成功的被ban了. 关于scrapy的使用可参见之前文章: http://blog.csdn.net/u0 ...
- SpringMVC:学习笔记(4)——处理模型数据
SpringMVC—处理模型数据 说明 SpringMVC 提供了以下几种途径输出模型数据: – ModelAndView: 处理方法返回值类型为 ModelAndView时, 方法体即可通过该对象添 ...
- 流量分析系统---redis
1\启动redis 方法一: 修改了某些配置,具体步骤惨开下面的内容 [root@mini1 ~]# service redis stop/start 方法二: [root@mini1 bin]#cd ...
- UI控件之UINavigationController
ViewController1 *vc1=[[ViewController1 alloc]init]; UINavigationController *nav1=[[UINavigationContr ...