
Announcements
I am trying to enter a date in a table, I have date data in a list[0]= 2023-06-20.
When I execute the query, it indicates that I cannot insert an int, it means that it executes the operation.
Try placing the data 2023-jun-20 in the list, it indicates that jun is invalid at the time of insertion.
on the insert try convert(date, %list[0]%,11), it indicates the same errors as above.
How should I store the date in the list or how should I treat the date in the insert?