摘要: 1、临时修改生效,不需要重启数据库 show variables like "max_connections"; #显示最大连接数show processlist; #显示当前连接数 set global max_connections=1000; #设置最大连接数1000 show variabl 阅读全文
posted @ 2023-08-29 09:06 岁月记忆 阅读(255) 评论(0) 推荐(0) 编辑
摘要: byte,short,chart——>int——>long——>float——>double 低————————————————————————>高 类型转换分为: 强制类型转换(由高-->低时使用), 自动类型转换/ 隐式类型转换(由低-->高时使用), 例如: int t = 100; doub 阅读全文
posted @ 2023-08-29 08:58 岁月记忆 阅读(16) 评论(0) 推荐(0) 编辑