首页 > 代码库 > 常用的一些mysql语句

常用的一些mysql语句

1、创建数据库

create database table;

2、删除数据库

drop database table;

3、去重筛选,示例:查询记录(name值相同的只保留一条)

select * from table group by name;

4、求总条数

select count(*) as totalcount from table;

 5、登陆mysql

mysql -uroot -p

 

常用的一些mysql语句