摘要:
instr函数返回string2在string1中出现的位置 查询地址中不包括“山东”的数据 select * from sys_address t where instr(t.address,'山东')=0; 查询地址中包括“山东”的数据 select * from sys_address t w 阅读全文
摘要:
public static String ImageToBase64(String imgPath) { InputStream in = null; byte[] data = null; // 读取图片字节数组 try { in = new FileInputStream(imgPath); d 阅读全文
摘要:
判断是否开启 show global variables like 'log_bin'; 判断开启的binlog_format模式是哪种 show variables like "%binlog_format%"; Statement(Statement-Based Replication,SBR) 阅读全文