workWk = "Monday,Tuesday,Wednesday,Thursday,Friday"
I have a database "pict" with a DATETIME field "datestamp"
The SQL statement
select cdow(datestamp) AS WkDay, * ;
from pict.
where cdow(datestamp) $ workWK
The output cursor:
WkDay
=======
Tuesda
Monday
Wednes
Thursd
Friday
Why did the SQL statement limit the output Column to 6 characters?
Thanks
(VFP)FoxNovice
I have a database "pict" with a DATETIME field "datestamp"
The SQL statement
select cdow(datestamp) AS WkDay, * ;
from pict.
where cdow(datestamp) $ workWK
The output cursor:
WkDay
=======
Tuesda
Monday
Wednes
Thursd
Friday
Why did the SQL statement limit the output Column to 6 characters?
Thanks
(VFP)FoxNovice