1. 程式人生 > >Mysql 造數測試

Mysql 造數測試

mysql 造數測試


1、創建custom數據庫

create database custom;


2、創建cuser表

create table cuser (

id int unsigned auto_increment primary key ,

account varchar(50) not null ,

password varchar(20) not null ,

username varchar(20) not null ,

card_id varchar(20) not null ,

user_id varchar(30) not null ,

telphone bigint(20) not null ,

email varchar(50)

);


3、下載造數sql:http://down.51cto.com/data/2334530

C:\Users\yuri_bai>mysql -u root -p
Enter password: ******
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 8
Server version: 5.7.19-log MySQL Community Server (GPL)
Copyright (c) 2000, 2017, 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 |
| custom             |
| mysql              |
| performance_schema |
| sys                |
+--------------------+
5 rows in set (0.00 sec)

mysql> use custom
Database changed

mysql> show tables;
+------------------+
| Tables_in_custom |
+------------------+
| cuser            |
+------------------+
1 row in set (0.00 sec)

mysql> source C:\Users\yuri_bai\Desktop\12306.sql

備註:(這個sql是這兩天上班空余時間,整理出來了)這裏執行註意一定要是全路徑


4、整理數據空格,因為是用UE慢慢調整出來了,所以最後一列數據空格較大。

如有更好的方法,還請不吝賜教

mysql> update cuser set email = trim(email);  #去掉數據庫裏面列字段內容的空格
Query OK, 131493 rows affected (4.06 sec)
Rows matched: 131653  Changed: 131493  Warnings: 0


本文出自 “老白的博客” 博客,請務必保留此出處http://laobaiv1.blog.51cto.com/2893832/1962153

Mysql 造數測試