hcmdy
MySQL concat函数可以连接一个或者多个字符串,如
select concat(\'10\');
结果:10 
select concat(\'11\',\'22\',\'33\');
结果
112233
MySQL的concat函数在连接字符串的时候,只要其中一个是NULL,那么将返回NULL
select concat(\'11\',\'22\',null);
结果

NULL


今天 试了一下,数据库中将域名 分为domain_prefix和domain_suffix ,使用domain查询

方法一:

String[] strings = domain.split("\\.");
String domain_Pre = strings[0];
String domain_suf = domain.substring(domain_Pre.length());

使用得到的domain_Pre和domain_suf 去查询数据库(仅二级域名可以,三级域名将会出错)

其中"." 要使用 “\\.”

方法二:

SELECT * FROM ddnsinf WHERE concat(domain_prefix,domain_suffix)="TFClokjq00b4.tfcddns.com" 

分类:

技术点:

相关文章:

  • 2021-08-19
  • 2021-06-25
  • 2021-04-26
  • 2021-10-24
  • 2022-02-14
  • 2022-12-23
  • 2022-12-23
  • 2021-11-23
猜你喜欢
  • 2022-12-23
  • 2021-11-23
  • 2021-11-23
相关资源
相似解决方案