美文网首页
MySQL安装(macOS)

MySQL安装(macOS)

作者: Evanzhu2013 | 来源:发表于2017-07-05 18:00 被阅读0次
    # 安装MySQL
    brew install mysql
    
    # 卸载MySQL
    brew uninstall --force mysql
    
    # MySQL安装无法建立link的问题
    sudo chown -R $(whoami) /usr/local/lib/
    

    启动MySQL服务

    mysql.server stop;
    mysql.server start;
    

    登陆登出账号

    mysql -uroot;
    quit;
    

    数据库的使用

    show databases; # 查看数据库
    use databases; # 使用数据库
    

    使用表格

    # create books table
    create table test.books (book_id int,title text, status int);
    show tables from test;  # 显示数据库中的表格
    use test; # 使用数据库
    describe books;  # 描述表格
    drop table <表名>;
    

    选择数据

    SELECT * FROM books;
    SELECT * FROM books WHERE status = 1;
    SELECT * FROM books WHERE status = 0 \G;
    

    相关文章

      网友评论

          本文标题:MySQL安装(macOS)

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