Executing MySQL find_in_set with MyBatisPlus

Using MyBatisPlus to Execute MySQL's find_in_set Function In real-world application development, there are frequently scanarios where we need to query database records containing a specific value within a comma-separated field. MySQL provides the find_in_set function specifically for this purpose. When working with Java applications, we can lev ...

Posted on Sun, 10 May 2026 19:20:49 +0000 by Denness

Converting Varchar Date Strings to Date Types in Oracle

Introduction Overview In Oracle databases, date and time values stored as varchar types often need to be converted into proper date formats for operations like comparisons and calculations. This article explains how to utilize the TO_DATE functon to transform string representations of dates into date types within Oracle. Background In many appl ...

Posted on Thu, 07 May 2026 11:18:13 +0000 by madspof