You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Noticing default values set during INSERT operations in tables (banks, pigs) where specified defaults exist, they are correctly applied. However, columns without explicitly provided values during retrieval display as 'undefined', which aligns with expectations as no default values were specified for those columns.
Additionally, updated the FOREIGN KEY reference from bank(name) to banks(name) for accuracy.
I have the following tables:
I have noticed that when I do an
INSERT
, all unspecified values are left asundefined
instead of using any of theDEFAULT
specifications.This has been tested for both
FILESTORAGE
andLOCALSTORAGE
.The text was updated successfully, but these errors were encountered: