mysql常用的语句示例

Posted 熊猫哥哥

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql常用的语句示例相关的知识,希望对你有一定的参考价值。

登陆数据库

mysql -hlocalhost -uroot -p123456         -u后面是用户名            -p后面是账号密码           -h后面是host

 

查看数据库列表       show databases; 

创建数据库              create database test;

删除数据库    drop database test;

使用数据库    use test;

 

查看数据表    show tables;

创建数据表    create table test(id INT NOT NULL);

删除数据表    drop table test;  

插入数据     insert into test (`id`,`name`) values (1,"xm");

删除数据     delete from test where id=1 and name="bgg";

 

以上是关于mysql常用的语句示例的主要内容,如果未能解决你的问题,请参考以下文章

MySQL常用语句

MySQL常用语句

MySQL 常用插入语法总结

入门MySQL——查询语法练习

常用的19条mysql优化

MySQL常用语句