美文网首页
SQL常用语法

SQL常用语法

作者: Movle | 来源:发表于2021-01-04 19:02 被阅读0次

    1.连接数据库

    mysql -h127.0.0.1 -uroot -p123456
    

    2.查看数据库

    show databases;
    

    3.使用数据库

    use test;
    

    4.查看表

    show tables;
    

    5.查看表结构

    desc student;
    

    6.建表

    create table student
    (
    stuid integer not null,
    stuname varchar(20) not null,
    stusex bit default 1,
    stubirth datetime not null,
    stutel char(11),
    stuaddr varchar(255),
    stuphoto longblob,
    primary key (stuid)
    );
    
    create table article 
    ( 
    id int primary key auto_increment, 
    title varchar(255) 
    ); 
    

    7.插入数据

    insert into student values (1001, '张三丰', default, '1978-1-1', '成都市一环路西二段17号', null);
    

    相关文章

      网友评论

          本文标题:SQL常用语法

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