LisonRead 本次搜索耗时 0.171 秒,为您找到 116 个相关结果.
  • mysql替换用法,以下表【oa_test】的字段

    62 2024-05-24 《Mysql》
    mysql替换用法,以下表【oa_test】的字段中包含的链接进行从【abc】替换到【test】: UPDATE oa_test SET fscyy_test_repository_contents = REPLACE(fscyy_test_repository_contents, 'http://abc:9081', 'http://test:9068')...
  • 国产数据库

    62 2026-03-28 《其它数据库》
    国产数据库商用与免费 一、开源免费(可商用,永久免费) 二、社区/开发版免费(限学习/测试) 三、云厂商免费额度(按需使用) 四、一句话总结 GreatSQL是纯正的国产数据库 一、核心信息 二、对你的价值 openGauss 和 TiDB 呢?与 mysql 兼容性如何 一、先看国籍(都是国产) 二、与 MySQL 兼容性(核心对比) 1...
  • 测试mysql远程的连接速度

    62 2024-09-13 《Mysql》
    方法一: time echo "SELECT 1;" | mysql -u username -p password -h hostname 方法二: time mysql -h your_mysql_server -u your_username -p -e "exit" 远程连接示例:mysql -h 192.168.1.100 -u m...
  • Mysql将数据库中重复的数据全部显示出来sele

    61 2022-08-20 《Mysql》
    Mysql将数据库中重复的数据全部显示出来 select a.id,a.name from survey a join ( select name,count(name) from survey group by name having count(name)>1 ) b on a.name=b.name where a.type is nu...
  • mysqldump 备份报 Warning: A

    61 2022-07-15 《Mysql》
    mysqldump 备份报 Warning: A partial dump from a server that has GTIDs will by default include the 备份mysql 报警告如下: Warning: A partial dump from a server that has GTIDs will by default ...
  • 让神通数据库支持mysql连接把DBeavel的文

    61 2022-04-17 《神通数据库》
    让神通数据库支持mysql连接 把DBeavel的文件夹“D:\DBeaverEE\plugins\com.dbeaver.resources.drivers.mysql_8.0.11”复制到神通数据库目录下“D:\ShenTong\dbstudio\plugins” MySQLsen com.mysql.jdbc.Driver jdbc:mysql://...
  • mysql的配置文件my.cnf参考参数[mysq

    61 2022-05-06 《Mysql》
    mysql的配置文件my.cnf参考参数 [mysqld] # # Remove leading # and set to the amount of RAM for the most important data # cache in MySQL. Start at 70% of total RAM for dedicated server, else...
  • PHP和mysql和redis的qps的配置或优化

    61 2026-01-21 《Linux系统》
    整体优化思路 一、PHP 配置与优化 1. PHP-FPM 进程管理优化 2. OPCache 优化 3. 脚本执行优化 4. PHP 代码级优化 5. 使用 PHP 扩展/框架优化 二、MySQL 配置与优化 1. 核心配置优化(my.cnf) 2. 索引优化 3. 查询优化 4. 架构优化 三、Redis 配置与...
  • MYSQL在linux下一般操作顺序1、creat

    61 2020-06-21 《Mysql》
    MYSQL在linux下一般操作顺序 1、create/drop database <数据库名> 2、show databases; 3、use <数据库名> 4、show tables;//显示所有表 5、desc 表名;//表结构 6、alter table 表名 add 字段 类型 其他;
  • navicat查看mysql版本号select v

    61 2019-05-04 《Mysql》
    navicat查看mysql版本号 select version() from dual;