create table #tempListOfThings ( thing varchar(50) )
INSERT INTO #tempListOfThings (thing) VALUES ('val1'), ('val2'), ...
Wednesday, 31 March 2021
Insert list of strings into temp table
Wednesday, 24 March 2021
Subscribe to:
Posts (Atom)
C#, .Net, MVC, jQuery, JavaScript, HTML, CSS, Umbraco, Phonegap / Cordova, Xamarin, iPhone, iOS, Swift, Android, Windows, apps, websites, Full Stack, ecommerce, Facebook, responsive, front-end. Freelance developer, programmer for web and mobile in Bristol, UK.
create table #tempListOfThings ( thing varchar(50) )
INSERT INTO #tempListOfThings (thing) VALUES ('val1'), ('val2'), ...