Tagged Questions
The concat tag has no wiki summary.
22
votes
9answers
31k views
How to concatenate strings of a string field in a PostgreSQL 'group by' query?
I am going to answer my own question because I just found the answer, but thought it still worth posting here.
I am looking for a way to concatenate the strings of a field within a group by query. So ...
8
votes
1answer
48 views
How to find all the tags of each page and then concat the tags into one column?
How can I find all the tags of each page and then concat the tags into one column?
For an example,
pages table,
page_id
1
2
3
4
tags table,
tag_id tag_name
1 A
2 B
3 ...
6
votes
1answer
165 views
LINQ: String.Join a list but add a character to that string beforehand
I have the following list:
alpha
beta
charlie
delta
I want to turn these strings into one string, comma separated, but I want to add a character to them first (the @ symbol). The end result should ...
6
votes
3answers
81 views
Will a key in sql still stay a key in a view
Let's say I have a mysql table called FISH with fields A, B and C.
I run SELECT * FROM FISH. This gets me a view with all fields. So, if A was a key in the original table, is it also a key in the ...
4
votes
1answer
1k views
How do I concatenate strings from a subquery into a single row in mysql?
I have three tables:
table "package"
-----------------------------------------------------
package_id int(10) primary key, auto-increment
package_name varchar(255)
price ...
3
votes
2answers
1k views
concat multiple JSONObjects
I am consuming some JSON from two different sources, I end up with two JSONObjects and i'd like to combine them in to one.
Data:
"Object1": {
"Stringkey":"StringVal",
"ArrayKey": [Data0, ...
3
votes
4answers
2k views
C# : concatenate 2 MP3 files
I tried to concatenate 2 MP3 files using the code below. I got a new file which I can play the first half of (complete first file), but the second half is silent. The length of the new file was ...
2
votes
3answers
29 views
How to string concat and calling System with the char var
im trying to concatsomm strings and call a expext script on my server, but im a .net programer and new to c and pointers so keep messing up... what am i doing wrong here?
or a better question wold be ...
2
votes
3answers
59 views
concat, quotation mark and apostrophe combination problems
I tried different ways and also looked around but can't get this running.
I need to concat the following:
"concat(
'this is; \"a sample',
//XML_NODE,
'\"; \"using an apostrophe',
...
2
votes
4answers
87 views
String Concatenation using concat operator (+) or String.format() method
Which one will be better use for Concatenation of String
If i want to build a string from bunch of string variables such as str1 and str2,
which one will be better one ???
String Concat operator
...
2
votes
1answer
86 views
Concat 2 tables with different structure using linq
I would like to union 2 tables and display all in a datagrid:
tblReservation (ID, StartTime, EndTime, SchoolID, AccomodationID)
tblMeeting (ID, StartTime, EndTime, Subject, Location)
In the ...
2
votes
2answers
105 views
MySQL: Concat all columns
for example we have a table with the columns "id", "name", "type", "year".
My target output would be SELECT CONCAT(id, name, type, year) FROM table.
Is it possible to do this without knowing the ...
2
votes
1answer
49 views
Error from use of C# Linq SQL CONCAT
I have the following three tables, and need to bring in information from two dissimilar tables.
Table baTable has fields OrderNumber and Position.
Table accessTable has fields OrderNumber and ...
2
votes
3answers
101 views
Concat items in linq
I have the following code:
class Person
{
public String Name { get; set; }
public String LastName { get; set; }
public String City { get; set; }
public Person(String name, String ...
2
votes
2answers
117 views
MySQL : How to remove string from column
Very simple
I have a column of string like that :
abc1
abc2
abc3
abc4
abc5
I need to remove 'abc' from this column and keep only the number on the right, so column would have only the number ...
2
votes
1answer
72 views
Find strings in text and if matched place into a different text with different name
I have a RichTextBox that contains:
CAP-00128G 0402C
CAP-00128G 0402C
CAP-00129G TANT3715
CAP-00129G TANT3715
CAP-00129G TANT3715
CAP-00129G TANT3715
CAP-00130G 12BGA_1.5
CAP-00151G ABC
...
2
votes
7answers
812 views
C# - String.Split() Remove last item
I have a RTB that is loaded with a file that looks like this:
J6 INT-00113G 227.905 174.994 180 SOIC8
J3 INT-00113G 227.905 203.244 180 SOIC8
U13 EXCLUDES 242.210 ...
2
votes
3answers
113 views
Javascript: concat to string at beginning?
What is the shortest method, to add a new value ("John") at the beginning of a string ?
var mystr = "Doe";
mystr.specialConcat("John ") // ??
console.log(mystr) // output: John Doe
2
votes
3answers
2k views
2
votes
7answers
344 views
Cast char to char array or char array to char?
So let's say I have a char and I want to strcat() it to a char array in a single line of code. For [a non-practical] example:
strcat("ljsdflusdfg",getchar());
Or I wanted to do the reverse, what ...
2
votes
6answers
498 views
Concat() in mysql query
im having a problem concatenating string in a mysql query.
here is my query:
SELECT *, CONCAT(nombre,' ',apellido) AS fullname FROM user WHERE nombre LIKE '%$busqueda%' OR apellido LIKE ...
2
votes
1answer
478 views
count concatenate column in mysql
I want do like this, but for another case that not function.
This is my example table:
Date Model No Line Range Lot Status
2010-08-01 KD-G435 1 01 ...
2
votes
1answer
103 views
MySQL concat question
I am somewhat mystified by concat and joins in MySQL 4. Here's where I am having an issue.
I have two tables...
person
id, fname, lname, city, state, zip
capital
state, city
I am needing to ...
2
votes
4answers
503 views
Java - is there an Inbuilt function for concatenating the Strings in a String[]?
Or a better way than this?
String concat(String[] strings) {
StringBuilder out = new StringBuilder();
for(String next: strings) {
out.append(next);
}
return out.toString();
}
No ...
2
votes
4answers
5k views
mysql concat() to create column names?
I would like to concatenate column names in a way that the first part of the column name is a string and the second part is a number which is the result of another query.
For example:
SELECT ...
1
vote
2answers
56 views
Concatenation of name and using concat again for a username?
I'm trying to pull out information from a database with PHP and have the following query:
$q = "SELECT CONCAT_WS(' ',FirstName,MiddleName,LastName) AS Name,
(NewCustomerID) AS customerid,
...
1
vote
2answers
57 views
Huge sql query returning an error (mysql)
I'm currently trying to update my in house search engine to use multiple words. It's very big and complicated but I'm running into errors I never ran into before now and I have no idea why.
so the ...
1
vote
1answer
63 views
HipHop PHP - Issues with string concat
I'm having serious issues with string concatenation in HipHop->C++ compiled PHP scripts.
My scripts rely heavily on concatenating strings, it performs in 0.6 seconds with PHP and 60 seconds compiled ...
1
vote
2answers
49 views
concat string in mysql record wise
My current query:-
select
p.id as product_id,
p.product_name,
child.name as category_name,
parent.name as parent_category_name
from category child
left join products p on ...
1
vote
2answers
46 views
Javascript: Concat an array while maintaining objects
I have two arrays:
ArrayOne = new Array(Array1, Array2);
ArrayTwo = new Array(Array3, Array4);
ArrayThree = new Array();
I want to do:
ArrayThree = ArrayOne.concat(ArrayTwo);
With the result:
...
1
vote
0answers
26 views
Apend xml content to another xml (but without the header part) on Android
I have an app for Android that downloads a xml from the web. I managed to update that xml by appending another xml to it.
But I don't want my xml to contain the second xml's header. I want it to be ...
1
vote
1answer
29 views
Mysql query with outer join and ordering on fields from other table
I have tables contracts and users and i need to show contracts sorted by concatecated fields from users table. (and need outer join here because there is not always user present for contract)
SELECT ...
1
vote
1answer
43 views
javascript, how can this function possibly return an empty array?
function whatTheHeck(obj){
var arr = []
for(o in obj){
arr.concat(["what"])
}
return arr
}
whatTheHeck({"one":1, "two": 2})
The concat function completely fails to do anything. But if ...
1
vote
2answers
54 views
PostgreSQL 8.1 CASE to string
I have a database that uses a string of 0's and 1's to represent the days in a persons work schedule. For example 0111110 would represent NO sunday, YES monday - friday, NO saturday. I would like to ...
1
vote
1answer
52 views
mysql stored function for multiple replacing in a query
i have one table1
tid letter1 letter2
1 a e
2 p b
3 c k
4 pp bb
5 rr ll
and another table2
t2id word
1 banana
2 strawberry
3 apple
4 grape
i ...
1
vote
1answer
25 views
Trying to re-define += in an Array subclass doesn't seem to do anything?
In an Array subclass (just an array that does some coercing of input values) I've defined #concat to ensure values are coerced. Since nobody ever uses #concat and is more likely to use #+= I tried to ...
1
vote
1answer
41 views
Odd CONCAT Error with Select/Insert
Any reason why this will return rows:
select users.user_fullname,concat(persons.first_name,' ',persons.last_name)
from users, persons
where users.user_id = persons.user_id
and users.user_fullname = ...
1
vote
2answers
27 views
concating fields with null values
ill start of by saying "Yes, i know my table does not conform with 1NF."
i am working with something old, and can not change it.
so please, no comments about that.
now, to the problem:
select ...
1
vote
1answer
110 views
CONCAT() result unexpectedly truncated when LEFT JOIN or GROUP BY is used in query
A MySQL query containing a CONCAT() is truncating the result unexpectedly and returning only 5 of the anticipated 6 characters ('abcd2' instead of abcd21').
A trimmed down version of the actual query ...
1
vote
1answer
185 views
Haskell list comprehension to map
I am new to haskell . I was wondering If I can do the following thing using just map and concat ?
[ (x,y+z) | x<-[1..10], y<-[1..x], z<-[1..y] ]
1
vote
1answer
44 views
Mysql - Joining on multiple IDs and concating joined column?
Not sure how accurate my question title is but let me explain a little better.
I have two tables: artists, releases
table artist
artist_id,
artist_name
table release
release_id,
...
1
vote
3answers
94 views
Concatenating C strings in linear time with crt
Say we want to concatenate const char *s[0], s[1], ... s[n-1] into one long char out[] in C.
Formally (ignoring buffer overruns, for simplicity):
void concatManyStrings(char out[], const char ...
1
vote
1answer
211 views
mysql concat sub query results as a subquery itself
this is a bit tough, i guess.
what i'm trying to achieve is to generate a string via group_concat and then run it as a query. my query return the
numCustomers as a query i would like to run.
is it ...
1
vote
2answers
240 views
C# - Textbox Addition to String Values & Duplicate Checking/Concatting
I have a text document that looks similar to this:
R.D. P.N. X Y Rot Pkg
L5 120910 64.770 98.425 180 SOP8
L4 120911 -69.850 98.425 180 ...
1
vote
4answers
180 views
C# - Concat to end if matches the front of file
I have a file that I have trimmed to only keep some of the data in it. This file is the file I would like to add to the end of a second file. Here it what the first file looks like:
147221
147486
...
1
vote
2answers
129 views
C# - Concat Partial data from a .txt file to an Excel file
I need help with reading in an excel spreadsheet and adding data to the spreadsheet.
I would like to:
Open/read an excel spreadsheet (if possible to load into a richtextbox that would be prefered).
...
1
vote
1answer
29 views
problem with grouping and concating mysql result in one row
these are PHP classes which I stored in table "classes"
class_id class_name
-------- ----------
1 accountant
2 attendance
and these are each class methods which I stored in table ...
1
vote
1answer
195 views
oracle cursor, concat with loop run figure
I want to use a cursor to loop through a management reporting chain using the Connect By Prior from Oracle. The order is then reversed so the VP is at the top and the record i started with is at the ...
1
vote
1answer
158 views
Using Like and Concat in MySQL query
I'm loading text files into my db and trying to do some quick matching between a table that lists names of organizations, and a table that holds the text file and potential matches to those ...
1
vote
1answer
260 views
Has anybody discovered a (simple) way to limit group_concat rows?
I have a pretty big query to pull out the information about reports from each country, and right now, the only way I can limit this is by putting Limit 10 or some number at the end, which will limit ...