I want to split date in column in 3 fields, I use this query
SELECT
SUBSTRING(Account.date, 1, 2) AS "Month",
SUBSTRING(Account.date, 4, 2) AS "Day",
SUBSTRING(Account.date, 7, 4) AS "Year"
FROM Account
Almost all data is in format 02/11/2000
, but some of it can be 02/November/2000
or 2/11/2000
.
Only common thing is that data separated by /
. How can I separate this column using the delimiter?