ドロップダウンリストで商品と日付をまとめたい
これがSQLクエリです
Select P.Id , M.ProductId as ProId , P.Name + ',+'M.[Date] as Name
from ProductMaster as P INNER JOIN PlanMaster as M on P.Id= M.ProductId
where M.IsDelete = 'False' order by M.ProductId ASC
フォーマットがdate
なかった場合、これは機能しますdatetime
私が得るエラーは
文字列から日時を変換するときに変換に失敗しました。