Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

31
votes
12answers
37k views

How to use GROUP BY to concatenate strings in SQL Server?

How do I get: id Name Value 1 A 4 1 B 8 2 C 9 to id Column 1 A:4, B:8 2 C:9
5
votes
3answers
320 views

SQL Query to get aggregated result in comma seperators along with group by column in SQL Server

I need to write a sql query on the table such that the result would have the group by column along with the aggregated column with comma separators. My table would be in the below format ...
3
votes
3answers
221 views

How to concatenate all strings from a certain column for each group

Suppose I have this table [Table1] Name Mark ------- ------ ABC 10 DEF 10 GHI 10 JKL 20 MNO 20 PQR 30 What should be my SQL statement to retrieve a record that looks like ...
2
votes
2answers
313 views

SQL comma-separated row with Group By clause

I have the following query: SELECT Account, Unit, SUM(state_fee), Code FROM tblMta WHERE MTA.Id = '123' GROUP BY Account,Unit This of course throws an exception because the Code is not in ...
2
votes
3answers
118 views

SQL same unit between two tables needs order numbers in 1 cell

I have 2 tables: SELECT UnitId FROM dbo.tblUnits SELECT UnitId, WorkOrderNumber FROM dbo.tblWorkOrders I need to display all UnitId's from dbo.tblUnits then in 1 column diplay all the WorkOrders ...
1
vote
1answer
28 views

mixing of pattern matching and date time functions in mysql

I have problem mixing pattern match and curdate() function. Below is the table structure, where some of the fields current date is updated everyday. I am not sure whether they can be mixed.Please ...
1
vote
2answers
56 views

SQL Server Have a select query as part of one select columns

Hey Im just wondering if the following is possible select id, name, (select name from secondTable where companyId = tableOne.id) as concatenatedString.. from tableOne so what I am looking for the ...
1
vote
3answers
1k views

string concatenate in group by function with other aggregate functions

Is it possible to concatenate strings with one or more of other group by function like sum, avg, count etc . Say I have the following table Id Name Order Value 1 a 1 100 2 b 2 ...
1
vote
3answers
1k views

Group and concatenate many rows to one

I want to "concatenate" all the "Text"-rows into one single row and get one row as a result. Is this even possible? I use MSSQL Server 2005.
1
vote
2answers
158 views

Concatenate multiple rows

I'm using Microsoft SQL Server 2005. I think I need a sub-query. I'm looking for one (1) row per customer, with the AvailableAction field be a concatenation of all the Actions for each customer. ...
1
vote
5answers
7k views

SQL, How to Concatenate results?

I currently have a SQL query that returns a number of fields. I need one f the fields to be effectively a sub query sub that. The Problem in detail: If I have a table X with two columns, ModuleID ...
0
votes
2answers
569 views

How to concatenate multiple rows?

I have the following query which returns the salary of all employees. This work perfectly but I need to collect extra data that I will aggregate into one cell (see Result Set 2). How can I aggregate ...
-1
votes
1answer
78 views

Subquery returning csv written values in a Main Query Column, possible?

I got to tables. TABLE 1: [..fields..] [CATEGORIE] [..fields..] TABLE 2: [..fields..] [ID] [CATEGORIE] [..fields..] I want to connect a bit special and tried it like this: SELECT [..other ...
-4
votes
0answers
50 views

Group in SQL Server [closed]

I have this data on Table1: Col1 Col2 1 a 1 b 2 c 2 d 2 e How would I go about and get the following result set? ...