The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
3answers
46 views

Why does the wm_concat not work here?

I have this query : (SELECT OBJECT_ID from cr_object_group_entries_vw where object_group_id IN (SELECT ITEM FROM TABLE(CR_FN_SPLIT_STRING('28,56',',')))) that returns : But when I do : ...
1
vote
1answer
48 views

Oracle SQL group by queries, Kind of PIVOT [duplicate]

Till now i haven't got a need to post a query, almost everything is available. This is my first question. I have a different requirement, I have the below table name say alarmdb ...
2
votes
1answer
42 views

Concatenating fields when BREAK ON command is used

I have built a command that uses the BREAK ON command to stop the output of duplicate field names. For example: f.name | f.value f.name | f.value f.name | f.value becomes: f.name | f.value ...
-1
votes
3answers
79 views

Concat the second column value if the first column value is same

I have a query like below and listed output of it: SELECT DISTINCT TRACKING_NUM,TITLE_OF_DOC_SEC FROM some_table WHERE TRACKING_NUM IS NOT NULL; o/p: TRACKING_NUM TITLE_OF_DOC_SEC 007 ...
2
votes
3answers
78 views

How to get the grouping output in PLSQL

I am having two tables: table1 : test1 desc test1 empcode number(6) qualification_code number(2) table2 :test2 desc test2 qualification_code number(2) qualification_name varchar2(10) select * ...
1
vote
2answers
251 views

How to find count and names of distinct characters in string in PL/SQL [duplicate]

I'm quite new to PL/SQL and I need to get the names and count of the distinct characters in a string. E.g. if I have a string str="helloexample", I need to get output of distinct characters in str, ...
0
votes
1answer
269 views

show data from multi column to single row

in my oracle database contained the following data http://i1207.photobucket.com/albums/bb476/daniwarrior/data-awal.jpg I want to display the data as shown below ...
3
votes
4answers
585 views

Oracle concatenation of columns with comma [duplicate]

Possible Duplicate: How can I combine multiple rows into a comma-delimited list in Oracle? Could some one please tell me how to achieve the following? Table: efforts_id cycle_name ...
1
vote
2answers
157 views

Join multiple rows into a string

I have 2 tables in Oracle: table1 and table2 (we have a very unimaginative DBA!) table1 has column id (and a few others). table2 has columns id, table1id and code. table1id is a foreign key to ...
-2
votes
2answers
2k views

Merging Query Result into single row - Oracle

Can I do like this in oracle,.? I have some data like this: No | Data | =========== 1 | A | 1 | B | 1 | C | 1 | D | Is there any query that can produce a result like this,.? No | ...
0
votes
2answers
88 views

Need help in grouping rows [duplicate]

Possible Duplicate: How can I combine multiple rows into a comma-delimited list in Oracle? I have a table that stores data in the following manner- 60333,120102,20120502,010000,1,2 ...
0
votes
3answers
951 views

Oracle/SQL - Multiple Records Into One [string aggregation]

I realize this is a ridiculous request, but what I'm trying to do is pull multiple records back into a single column along with some literal text. So given a table like this REGION CITY SID ...
0
votes
4answers
820 views

SELECT returning multiple rows as string

I have a table: Contracts: contractid | contract name "1" | "MAG:001" "2" | "MAG:002" -- and -- Devices: devid | serialnum | fk_contractid 10 | 1234 | 1 11 | 5678 | 1 12 | 4321 | 2 13 | 8765 | 2 ...
0
votes
1answer
151 views

Aggregate columns but distinct terms should be inserted

I have two table and I want to merge them TERMS_TABLE ID | TERMS 309 | 'hardware' 309 | 'software' 309 | 'computer' TFIDF_TABLE ID | TERMS 309 |'computer,phone,mp3....' Now I want to ...
2
votes
2answers
122 views

How to do this in SQL query?

Table: A Table: B Table: C ------------ ---------------- ------------- P_id | G_id P_id | Name G_id | Title ------------ ...
1
vote
2answers
2k views

SQL Rows concatenation based on single column

I have Table with values X Y Z - --- - 1 abc P 1 def Q I need a normal query (not pl/sql) which can give result as X Y Z - ------- --- 1 abc,def P,Q ...
1
vote
1answer
1k views

Concatenate fields using connect by prior

Having the following table my_tabe: M01 | 1 M01 | 2 M02 | 1 I want to query over it in order to obtain: M01 | 1,2 M02 | 1 I managed to get close using the following query: with ...
0
votes
1answer
962 views

how to insert multiple rows from a source table into a single row in target table using cursor in oracle [duplicate]

Possible Duplicate: How can multiple rows be concatenated into one in Oracle without creating a stored procedure? create table pr_info( pr_ref varchar2(10), pr_text varchar2(3), ...
1
vote
2answers
281 views

can we make multiple rows as comma seperated in SQL Query?

can we make multiple rows as comma seperated in SQL Query? query should return something like: 1, "john,mike,petra" 2, "bob,carl,sandra,peter, etc
0
votes
1answer
190 views

Grouping data in oracle table from 2 diff colums [duplicate]

Possible Duplicate: comma-separated list as a result of select statement in Oracle I Have fields like this in a SQL table: ELEMENT_CODE DIAG_CODE ------------------------ FTD ...
2
votes
3answers
5k views

comma-separated list as a result of select statement in Oracle

I have a table named "person". It contains person's id and it's parent id (only one parent is possible). As a result of a query, I want a table with first column - a person id, and a second column - a ...
4
votes
4answers
25k views

SQL to concatenate column values from multiple rows

Would it be possible to construct SQL to concatenate column values from multiple rows? The following is an example: Table A PID A B C Table B PID SEQ Desc A 1 Have A 2 ...
1
vote
1answer
111 views

String Aggregation in sqlite

Anyone knows if String Aggregation in sqlite is possible? If i have an animal column with 5 rows/datas, how can i combine them so that the output would be in one field ...
1
vote
4answers
5k views

string aggregation in Oracle 10g

How to aggregate string( concatenate) with Oracle 10g SQL?
0
votes
1answer
653 views

Incredibly slow Materialized View creation when using string aggregation, any performance suggestions?

I've got a load of materialized views, some of them take just a few seconds to create and refresh, whereas others can take me up to 40 minutes to compile, if SQLDeveloper doesn't crash before that. I ...
4
votes
6answers
22k views

How can multiple rows be concatenated into one in Oracle without creating a stored procedure?

How can I achieve the following in oracle without creating a stored procedure? Data Set: question_id element_id 1 7 1 8 2 9 3 10 3 ...
5
votes
5answers
17k views

Oracle: Combine multiple results in a subquery into a single comma-separated value

I'm trying to convert a single-columned subquery into a command-separated VARCHAR-typed list of values. This is identical to this question, but for Oracle rather than SQL Server or MySQL.
25
votes
12answers
104k views

How can I combine multiple rows into a comma-delimited list in Oracle?

I have a simple query: select * from countries with the following results: country_name ------------ Albania Andorra Antigua ..... I would like to return the results in one row, so like this: ...