All Questions
Tagged with string-concatenation or concatenation
14,259 questions
3 votes
1 answer
57 views
How can I create a table using ARRAYFORMULA that concatenates all items meeting the same criteria in one cell?
Sample spreadsheet I've been trying for the life of me to figure out how to do this and cannot. I have a table: ColA is items, ColB is their category. Item Category Apple Fruit Orange Fruit ...
2 votes
1 answer
117 views
Concatenate Tables Based on Column Information in Python [duplicate]
I have a dataframes pulled from a file. The variable with all these dataframe names is: Data_Tables. These dataframes all have the same columns, and I want to concatenate the dataframes based on the ...
3 votes
1 answer
148 views
postgres: parameterized query with pattern matching
in node, i'm creating the following query: let sql_query = "\ SELECT \ ... \ WHERE \ FACILITY_ID = $1 \ AND (EVENT_START_TIME_UNIX_MS < $2) \ AND (...
1 vote
1 answer
62 views
Search for multiple different strings in the same set of multiple columns [duplicate]
I need to search for multiple different strings in the same set of multiple columns in a MySQL table. Here's one way that works (CONCAT / CONCAT_WS): SELECT * from some_table WHERE LOCATE('word1', (...
0 votes
2 answers
120 views
Write data to Excel cells, update formulas, and then continue with updated values
I am working on an interactive Excel project. I have a series of UserForms that take user-entered data and writes them to cells. In the final UserForm in the sequence, data is written to a final cell. ...
0 votes
1 answer
77 views
MariaDB :Producing an insert from another table with concat
I want to produce an insert out of a table for another table with concat. All works well, besides a little devil ... At the end of the concat I get an ' after the ; Without the ' it works all well. ...
0 votes
1 answer
25 views
In C, how do I use a single hex value in both an enum and a const char *
I have a function that allows access to system variables based on a lookup code. The lookup code has an enum type. typedef enum SystemVariable_e { INT_SYSTEM_VAR_1 = 0x10, INT_SYSTEM_VAR_2 = 0x20 ...
1 vote
1 answer
73 views
Numpy Concatenate Replacing Previous Data in Array
I am trying to write code that produces a deck of cards. The deck is a 2D array that contains each card as an array. Each card array contains its card value as well as its suit, represented by the ...