1
টেবিল সোমারস্কেমা তৈরি করুন? # টেম্পেটেবল নামটিতে একটি বাগ আছে?
সাধারণ পরীক্ষা-বিছানা: USE tempdb; GO /* This DROP TABLE should not be necessary, since the DROP SCHEMA should drop the table if it is contained within the schema, as I'd expect it to be. */ IF COALESCE(OBJECT_ID('tempdb..#MyTempTable'), 0) <> 0 DROP TABLE #MyTempTable; IF EXISTS (SELECT 1 FROM sys.schemas s …