美文网首页
复习sql(一)

复习sql(一)

作者: 如果俞天阳会飞 | 来源:发表于2021-01-29 16:42 被阅读0次

    启动 net start mysql
    停止 net stop mysql

    登陆 mysql -u root -p
    密码: ***
    显示 所有 数据库
    show databases;

    使用数据库 use 数据库名称;

    use test;
    

    查看表结构 describe 表名;
    describe tables;

    创建表
    create table[if not exists]表名(字段列表[,索引或约束列表])[表选项列表]
    create table hema
    (
    id int,
    name varchar(255), //必须写字符串长度否则命令行报错
    age int,
    sex int
    );

    创建数据库
    create database [if not exists]数据库名 [character set = 字符集] [collate = 校对集];
    create database if not exists hehe character set =utf8 collate = utf8_general_ci;

    如果要退出
    exit 回车

    相关文章

      网友评论

          本文标题:复习sql(一)

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