Dim query As String = "SELECT * FROM table WHERE column CONTAIN DAYOFWEEK(CURDATE())"
The DateType of the column is VARCHAR and the data is number with comma like "0,1,2,4,5"
Example today is Friday DAYOFWEEK(CURDATE()) will return 6 how can I check if the column contain 6?