Hi,
I have to be able to execute an sql statement which would look something like this.
SELECT *
FROM Table1
WHERE start_date LIKE '*01*'
The problem is this does not work since start_date is from the type date.
How can I convert the start_date field to a string in order to execute the where clause?
I have to be able to execute an sql statement which would look something like this.
SELECT *
FROM Table1
WHERE start_date LIKE '*01*'
The problem is this does not work since start_date is from the type date.
How can I convert the start_date field to a string in order to execute the where clause?
