美文网首页
linux下Mysql数据库基本操作(二)

linux下Mysql数据库基本操作(二)

作者: 潘雪雯 | 来源:发表于2020-10-20 14:32 被阅读0次
    • 登录数据库的方式
    mysql -u root -p
    
    • desc可以查看表结构的详细信息
      image.png
    • 表中插入数据
    INSERT INTO test_data VALUES (1,'25',1);
    INSERT INTO test_data VALUES (2,'25',0);
    INSERT INTO test_data VALUES (3,'10G',0);
    
    image.png
    • 修改表中字段的值
    update test_data set net_card='25G' where id=1;
    
    image.png
    • 增加表中的列
    alter table tablename add column datatype 类型 after 字段 (在某个字段后加列)
    alter table test_data add column test_id int(1) after capacity;
    
    image.png
    • 纵向查询数据库的方式:
    select * from test_data\G;
    
    image.png

    相关文章

      网友评论

          本文标题:linux下Mysql数据库基本操作(二)

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