美文网首页
Mysql建立数据库和表的操作实例

Mysql建立数据库和表的操作实例

作者: 敬子v | 来源:发表于2021-06-09 20:27 被阅读0次

    1. 进入mysql命令

    方法一

    1.进入根目录:

    su
    

    2.输入用户密码
    3.进入mysql数据库

    mysql
    

    如下:

    Welcome to the MySQL monitor.  Commands end with ; or \g.
    Your MySQL connection id is 15
    Server version: 5.7.27-0ubuntu0.18.04.1 (Ubuntu)
    
    Copyright (c) 2000, 2019, 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> 
    

    方法二

    $ sudo mysql -u root -p
    

    2.建立数据库和表的操作

    2.1SQL的常见命令

    show databases; 查看所有的数据库
    use 库名; 打开指定 的库
    show tables ; 显示库中的所有表
    show tables from 库名;显示指定库中的所有表
    set names utf8;设置数据库编码
    create table 表名(
        字段名 字段类型,   
        字段名 字段类型
        ); 创建表
    desc 表名; 查看指定表的结构
    select * from 表名;显示表中的所有数据
    

    2.2实际操作

    create database test;创建新的数据库
    use test;使用test数据库
    show tables from mysql;在test数据库里查看其他数据库中的表
    select database();查看当前所处的数据库
    create table stuinfor(
    id int,
    name varchar(20));创建表
    show tables;显示表名
    desc stuinfor;查看表结构
    insert into stuinfor(id,name) values(1,'jone');
    insert into stuinfor(id,name) values(1,'jone');向表中输入对象
    select * from stuinfor;查看表
    update stuinfor set name='lilei' where id=1;改表中对象
    delete from stuinfor where id=1;删除表中的对象
    drop table stuinfor;删除表
    

    相关文章

      网友评论

          本文标题:Mysql建立数据库和表的操作实例

          本文链接:https://www.haomeiwen.com/subject/qraxeltx.html