a notation or direction at one place (as in a document or file) to pertinent information at another place
Questions tagged [cross-reference]
365 questions
-1
votes
3 answers
mysql how to find if at least one row from cross reference table is null or criteria
i have trouble with mysql, i dont find the way to do it maybe i dont know the good mysql keyword
mysql5
+----------+------------+----------+
| ID | FOREIGNKEY | TRAINER |
+----------+------------+----------+
| ... | ... | ... …

juhnz
- 304
- 3
- 11
-2
votes
1 answer
Is there any good solution to resolve cross-reference between two class in c++?
My use case is following
class Caller
{
init(){ Callee.init(); }
callMeByCalle() { /*do something*/ }
}
class Callee
{
init(){ /*initialize to receive IPC call from another process*/ }
onHandlerIPC { /*call A class's callMeByCalle() in…

Hercoa
- 69
- 1
- 7
-2
votes
1 answer
Make a loop go back to the begining of a list
I’m making a cross reference program in Python. I have a list of 600 data points, and another of 148 data points. I want to cross reference the two to find similar points within a specific range. I know I have to loop through one list, than find…

user3715675
- 183
- 1
- 2
- 7
-2
votes
2 answers
how to query sql cross-reference table
i am novice at SQL and have problems hope you can help me :
mysql5
table TRAINING_REQUESTS
+------------+--------+
| ID_TR | FIELD |
+------------+--------+
| ... | .. |
| 254 | .. |
| ... | .. |
| 286 …

juhnz
- 304
- 3
- 11