1
我想執行下面的查詢,但我得到一個函數格式不存在的錯誤。SQL格式函數
CREATE TABLE [prods](
[Id] [int] not null,
[ShippedDate] [datetime] not null,
[shipId] AS (format([ShippedDate], 'yyMM','en-US') +right('00000' + CONVERT([varchar],[Id]).(6)))
)
我在做什麼錯?
'FORMAT'與SQL Server 2012中引入的。 –