我遇到以下SQL語句的問題。任何幫助,將不勝感激。更新聲明SQL錯誤不正確的語法SliderTitle和Where語句
Select *
From dbo.Site_tblSliderFeatures
WHERE SliderID =17
GO
BEGIN TRAN
Update dbo.Site_tblSliderFeatures
SliderTitle = 'Racing to the Future',
SliderCaption = 'caption.',
SliderStart = '2014-09-30',
SliderEnd = '2014-10-7',
SliderPhoto = 'images/structure/RacingtotheFuture.png',
SliderLink = 'link'
SELECT *
FROM dbo.Site_tblSliderFeatures
WHERE SliderID = 17
-- COMMIT TRAN
ROLLBACK TRAN
這是錯誤消息。
消息102,級別15,狀態1,行6
附近有語法錯誤SliderTitle'。
看起來像你缺少你'UPDATE'子句中的字'SET'。可能你可能想爲該語句添加一個WHERE子句,因爲它會更新表中的所有行。 – sgeddes 2014-09-30 23:37:53