Skip to main content

All Questions

3 votes
1 answer
57 views

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 ...
coltzans's user avatar
2 votes
1 answer
117 views

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 ...
Jon S's user avatar
  • 55
3 votes
1 answer
148 views

in node, i'm creating the following query: let sql_query = "\ SELECT \ ... \ WHERE \ FACILITY_ID = $1 \ AND (EVENT_START_TIME_UNIX_MS < $2) \ AND (...
4mla1fn's user avatar
  • 335
1 vote
1 answer
62 views

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', (...
rgg's user avatar
  • 21
0 votes
2 answers
120 views

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. ...
youngstubbs's user avatar
0 votes
1 answer
77 views

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. ...
MBE's user avatar
  • 119
0 votes
1 answer
25 views

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 ...
Derek Tables's user avatar
1 vote
1 answer
73 views

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 ...
Kristen's user avatar
  • 21

15 30 50 per page
1
2 3 4 5
951