本篇文章给大家带来的内容是关于mysql的基本命令介绍,有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。
前端狗初学MySQL,记录一下
1、用户登录: 2、查看数据库: 3、创建数据库: | create database firstsql;
|
4、进入数据库: 5、查看数据库中的所有表: 6、创建表: | create table student( ID char(7) primary key, NAME varchar(20) not null, Age varchar(20) default '10' )comment='信息';
|
设置ID作为主键,NAME的值不能为空,Age 的默认值是10,备注为信息。
7、查看表结构 8、查看表格创建信息 | show create table student;
|
9、查看表数据 | select * from student; select ID,NAME,Age from Student; select * from Student where ID='001';
|
10、插入数据 | insert into student values ('001','二哈','计算机');
|
11、删除数据 | delete from student; delete from student where ID='001';
|
12、修改数据 | update student set NAME='物联网' where ID='001';
|
以上就是mysql的基本命令介绍的详细内容
|