4
votes
SQL Number Formating
With TSQL you could cast to money and convert it will add the .00, but you could use replace or substring to remove.
replace(convert(varchar, cast(column as money), 1), '.00', '')
…
1
vote
How do I concatenate text in a query in sql server?
If you are using SQL Server 2005 or greater, depending on the size of the data in the Notes field, you may want to consider casting to nvarchar(max) instead of casting to a specific length which co …
9
votes
How to copy a row from one SQL Server table to another
As long as there are no identity columns you can just
INSERT Table2
SELECT * FROM Table1
WHERE [Conditions]
…
3
votes
Fastest way to remove non-numeric characters from a VARCHAR in SQL Server
I may misunderstand, but you've got two sets of data to remove the strings from one for current data in the database and then a new set whenever you import.
For updating the existing record …
10
votes
How to return multiple values in one column (T-SQL)?
You can use a function with COALESCE.
CREATE FUNCTION [dbo].[GetAliasesById]
(
@userID int
)
RETURNS varchar(max)
AS
BEGIN
declare @output varchar(max)
select @output = …
