mysql
qq_38909957
想要成为一个快乐的码农,希望多年以后秀发依然健在!!
展开
-
spring 处理含有加密值的属性文件
<bean id = "propertyConfigurer" class = "org.springframeword.context.support.PropertySourcesPlaceholderConfigurer"> <property name = "properties" ref = "localProperty"/> <property name = "ignoreUnresolvablePlaceholders" value = "tru.原创 2021-08-19 16:22:44 · 188 阅读 · 1 评论 -
MySQL教程之concat以及group_concat的用法
本文中使用的例子均在下面的数据库表tt2下执行: 一、concat()函数 1、功能:将多个字符串连接成一个字符串。 2、语法:concat(str1, str2,...) 返回结果为连接参数产生的字符串,如果有任何一个参数为null,则返回值为null。 3、举例: 例1:select concat (id, name, score) as info from tt2; 中...转载 2020-01-16 14:28:22 · 135 阅读 · 0 评论