There may be reason for you to concatenate a column from one SQL table to one field. In other words, you want to append or add a column’s contents into one merged string. In SQL Server you can do this with a function pretty easily. Here’s an example. CREATE FUNCTION FUNC_CONCAT (@ID BIGINT)RETURNS VARCHAR(8000)AS BEGIN [...]

