zoukankan      html  css  js  c++  java
  • MySQL

    D:SoftWareMySQLMySQL Server 5.7in>mysql -uroot -p
    Enter password: ******
    Welcome to the MySQL monitor.  Commands end with ; or g.
    Your MySQL connection id is 4
    Server version: 5.7.35-log MySQL Community Server (GPL)
    
    Copyright (c) 2000, 2021, Oracle and/or its affiliates.
    
    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> status
    --------------
    mysql  Ver 14.14 Distrib 5.7.35, for Win64 (x86_64)
    
    Connection id:          4
    Current database:
    Current user:           root@localhost
    SSL:                    Cipher in use is ECDHE-RSA-AES128-GCM-SHA256
    Using delimiter:        ;
    Server version:         5.7.35-log MySQL Community Server (GPL)
    Protocol version:       10
    Connection:             localhost via TCP/IP
    Server characterset:    utf8
    Db     characterset:    utf8
    Client characterset:    utf8
    Conn.  characterset:    utf8
    TCP port:               3306
    Uptime:                 13 min 31 sec
    
    Threads: 2  Questions: 10  Slow queries: 0  Opens: 108  Flush tables: 1  Open tables: 101  Queries per second avg:
    
    
    mysqlmysql> show databases;   /*所有的数据库db查询,要以分号结尾*/
    +--------------------+
    | Database           |
    +--------------------+
    | information_schema |
    | mysql              |
    | performance_schema |
    | school             |
    | sys                |
    +--------------------+
    
    mysql> use school
    Database changed
    mysql> SELECT * FROM v_student LIMIT 0, 1000;
    +----+-------+-----+
    | id | name  | age |
    +----+-------+-----+
    |  1 | Bob   |  18 |
    |  3 | Jerry |  17 |
    +----+-------+-----+
    2 rows in set (0.13 sec)
    
    mysql> describe student
        -> ;
    +-------+--------------+------+-----+---------+----------------+
    | Field | Type         | Null | Key | Default | Extra          |
    +-------+--------------+------+-----+---------+----------------+
    | id    | int(10)      | NO   | PRI | NULL    | auto_increment |
    | name  | varchar(100) | NO   |     | NULL    |                |
    | age   | int(3)       | NO   |     | NULL    |                |
    +-------+--------------+------+-----+---------+----------------+
    3 rows in set (0.00 sec)
    
    mysql> create database db_bob
        -> ;
    Query OK, 1 row affected (0.00 sec)
    
    mysql> show databases
        -> ;
    +--------------------+
    | Database           |
    +--------------------+
    | information_schema |
    | db_bob             |
    | mysql              |
    | performance_schema |
    | school             |
    | sys                |
    +--------------------+
    6 rows in set (0.00 sec)
    
    mysql>  exit;
    Bye
    人各有命,上天注定,有人天生为王,有人落草为寇。脚下的路,如果不是你自己的选择,那么旅程的终点在哪,也没人知道。你会走到哪,会遇到谁,都不一定。
  • 相关阅读:
    uva 562
    uva 624
    hdu 3826
    CF 89 div2 A
    看视屏学编程之接口、抽象类
    看视频学编程之SQL数据库基础
    看视频学编程之WinForm
    看视频学编程之骑士飞行棋—自己做(单机版)
    看视频学编程之继承
    看视频学编程之C#中的类
  • 原文地址:https://www.cnblogs.com/ZkbFighting/p/15318671.html
Copyright © 2011-2022 走看看