人生三从境界:昨夜西风凋碧树,独上高楼,望尽天涯路。 衣带渐宽终不悔,为伊消得人憔悴。 众里寻他千百度,蓦然回首,那人却在灯火阑珊处。

有两种方式:

1、用字符串拼接

value := "阳光"
value = "'%"+value+"%'" query = "select uid from info where tags like ? err := mysqlutil.GetInstance().Query(context.Background(), next, query,value)

 

2、用mysql内置的字符串连接函数concat()

value := "阳光"
query = "select uid from info where tags like concat('%',?,'%') err := mysqlutil.GetInstance().Query(context.Background(), next, query,value)

 

posted on 2022-03-24 20:12  测试开发喵  阅读(325)  评论(0编辑  收藏  举报