There's already an open bug where two fields of certain types can't be held inside a single default-sized VARCHAR in MSSQL, because the size of VARCHAR is 30 characters by default. #4478 Here's a new ...
So I have this page. The page is taking form-submitted data and saving it to a SQL Server database via stored procedure.<br><br>Just one problem - every time I ...
DECLARE @FirstNames VARCHAR(MAX) DECLARE @LastNames VARCHAR(MAX) SELECT @FirstNames = COALESCE(@FirstNames + ', ', '') + [FirstName] FROM [geek_demo] SELECT ...