Hi @YongJaco ,
Do you mean that the Date column could not be displayed in the Data Table inside your canvas app?
Have you tried to display your SQL Table records in a Gallery? Same issue as the Data Table?
Based on the issue that you mentioned, I have made a test on my side, and don't have the issue that you mentioned. Please consider add a Gallery in your app, set the Items property to your SQL Table, then check if same issue occurs.

You could also consider save your SQL Table records into a collection, then check if the Date type column is populated with proper value from your SQL Table:
ClearCollect(TableRecords, '[dbo].[SQLTable]')
Also please consider re-create a new connection to your SQL Table from your canvas app, then check if the issue is solved. Please consider turn off the "Explicit column selection" option in Advanced settings of App settings of your app, then re-load your app, then check if the issue is fixed.
If the issue still exists, please consider convert the "Date" type column in your SQL Table into "Date time", then within your canvas app, re-create a new connection to your SQL Table, then check if the "Date time" column value could be displayed in your app properly. Please use the following SQL syntax to convert your "Date" type column in your SQL Table into "Date time":
ALTER TABLE table_name
ALTER COLUMN column_name datetime;
Best regards,