学习mysql之后的一点总结(基础)
更新时间:2012年05月21日 11:27:53 作者:
学习mysql之后的一点总结,比较适合新手朋友
1.想要在命令提示符下操作mysql服务器,添加系统变量。(计算机-系统属性——环境变量——path)
2.查询数据表中的数据;
select selection_list select * /columns
from table_list from table1/table2
where primary_constraint
group by grouping_columns
order by sorting_colomns desc降序 select * from table order by id desc;
having second_constraint
limit count select * from table where id limit 1,4;
2 常用的统计函数:avg(字段),sum(字段),count(字段),min(字段),
select sum(字段2) as 别名 ,字段1 from table group by 字段1;
3 算数运算,字符串,以及逻辑运算构造表达式:select * (price*0.8) as '80%' from table;打八折
2.查询数据表中的数据;
select selection_list select * /columns
from table_list from table1/table2
where primary_constraint
group by grouping_columns
order by sorting_colomns desc降序 select * from table order by id desc;
having second_constraint
limit count select * from table where id limit 1,4;
2 常用的统计函数:avg(字段),sum(字段),count(字段),min(字段),
select sum(字段2) as 别名 ,字段1 from table group by 字段1;
3 算数运算,字符串,以及逻辑运算构造表达式:select * (price*0.8) as '80%' from table;打八折
相关文章
MySQL提示Truncated incorrect DOUBLE value解决方法
这篇文章给大家介绍了MySQL提示Truncated incorrect DOUBLE value报错的四种解决方法,并通过代码给大家介绍的非常详细,具有一定的参考价值,需要的朋友可以参考下2024-02-02Mysql8报错this is incompatible with sql_mo
这篇文章主要介绍了Mysql8报错this is incompatible with sql_mode=only_full_group_by问题,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教2024-01-01mysql运行net start mysql报服务名无效的解决办法
这篇文章主要为大家详细介绍了mysql运行net start mysql报服务名无效的解决办法,具有一定的参考价值,感兴趣的小伙伴们可以参考一下2017-01-01mysql Access denied for user ‘root’@’localhost’ (using passw
这篇文章主要介绍了mysql Access denied for user ‘root’@’localhost’ (using password: YES)解决方法,本文给出详细的解决步骤及操作注释,需要的朋友可以参考下2015-07-07
最新评论