
MySQL问题积累
桃子嘻嘻
哪有那么多的功利性,如果付出就想要回报,那么这条路如何才能走远呢?
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
如何查询MySQL的用户信息和用户密码?
程序如下:use mysql;show tables;select user,host,authentication_string from user;其中:user:用户名host:主机名authentication_string:对应的为密码加密形式原创 2020-06-23 20:14:11 · 1885 阅读 · 0 评论 -
Window10,64系统为例——如何关闭MySQL服务器
如何关闭MySQL服务器1.右键点击《此电脑》;2.选择《管理》;3.选择《服务和应用程序》;4.选择《服务》;5.找到《MySQL》;6.右键点击MySQL7.选择《停止》;服务器就停止啦!!!原创 2020-06-10 22:25:47 · 784 阅读 · 0 评论 -
MySQL四舍五入、数据截取实际问题求解
1.题目要求:2.提示3.程序代码:update Score set s_score=truncate((s_score-round(sqrt((power(4,4)-power(3,3))/power(2,2)),2)),2);原创 2020-05-31 08:57:35 · 249 阅读 · 0 评论