Questions tagged [relate]

16 questions
2
votes
2 answers

How to relate objects with schema.org which are on different pages?

I am searching for a solution for my problem for days and I have still no Idea if it's possible or not. I want to relate objects/things with schema.org and microdata notation like with RDFa and the about/rel attributes. Example: Page 1:…
bvoid
  • 53
  • 4
2
votes
3 answers

Determining a rule: relate integer value to color #RGB

I'd like to determine a background-color C depending on an integer X (number of positive votes) OK, I could do if(x==0) c = '#000'; else if(x > 0 && x < 5 ) c = '#001' else if(X<=5 <= 20) c = '#002'; //and so on... But, how can I do this to make…
Toni Michel Caubet
  • 19,333
  • 56
  • 202
  • 378
1
vote
1 answer

Conditional Relate ID with email and name

I'm trying to create a relation from some tables we could that the ID is the team they belong to, and the division is their role.(IN google sheets)(This table of information is in Sheet7) Now I'm trying to create a conditional IF B2(Value) is lower…
user16239103
1
vote
1 answer

MATLAB: How can I cancel ("NaN" value) elements of a matrix based on another matrix's "NaN" values?

Let's suppose I have a matrix A= 1 2 3; 4 5 6; 7 8 9 and a matrix B= 1 NaN 3; NaN 5 6; 7 NaN NaN I want to cancel the same elements that are canceled in matrix B. It would be: A2= 1 NaN …
1
vote
3 answers

How to add and relate a node within the parent nodes add form in Drupal

I want to accomplish the following scenario in Drupal: You have 2 content-types. Lets say, an application-form for a lisence, and a content-type for persons. Then when you go to add a lisence in the "node/add" submission form in Drupal, i would like…
espenhogbakk
  • 11,508
  • 9
  • 39
  • 38
1
vote
3 answers

Best Aproach to Relate A Entity Class to the Correspoding Table in a DataBase

i want to relate each Field of an Entity Class to the corresponding datatable Field. im working on c# currently Any Suggestions?
Arturo
  • 3,066
  • 2
  • 18
  • 11
1
vote
1 answer

Orange data mining 2.7 How to relate (not merge, not concatenate) 2 datasets

I am new using Orange using version 2.7 and I was wondering if someone can answer the following question: How to relate (not merge, not concatenate) 2 datasets in Orange? Thank you. I have one table “Basic Data” with some general data: caseId,…
LOrange
  • 11
  • 2
1
vote
2 answers

Episerver empty attribute

I'm trying to search all community users to get a list of people who do not have a custom attribute set. Using the query StringCriterion, is there a way to match against null rather than a value? I've tried the following code, but it doesn't work. …
Rob Taylor
  • 197
  • 2
  • 7
0
votes
1 answer

PySpark - Relating Rows to other Rows for filtering

In PySpark, how do I relate data in one row, to another row, and then filter based on this? Simplified example, I have a pyspark dataframe with 9 rows of data per day, and I have many days of data, in the example below I give 2 days, 18 rows of…
Michael
  • 1
  • 1
0
votes
1 answer

Find related columns in between two Table

Imagine, you have two tables. And each Table has a lot of columns. I did not create the database, so I really don't know what columns are related. One problem is there's no same Column name in between two tables, So I can not figure out by column…
Dong-gyun Kim
  • 411
  • 5
  • 23
0
votes
1 answer

How can I insert the data from import tables to the model tables in sql?

I'm trying to translate the information from the following model I made into code: The code I made consists of the creation of the import tables and the insertion of the data into them using 'COPY'. The insertion is succesfull. The issue I have is…
Javi Albors
  • 57
  • 1
  • 8
0
votes
1 answer

Is there a swedish language pack for EPiServer Relate+ 2.0?

I've looked everywhere, I can't find any extra languages for Relate+ Anyone got a clue?
Leon Radley
  • 7,596
  • 5
  • 35
  • 54
0
votes
1 answer

How to relate two column in PHP MYSQL

I have created one request table that contain all request information. The table containing these columns: requestid , itemrequest1, itemrequest2, itemrequest3, quantity1, quantity2, quantity3 How to make a relation so that if the itemrequest has a…
john
  • 7
  • 3
0
votes
1 answer

Show tree result between two table related with comma

In MySQL my table1 is ID name parent 1 one 0 2 two 1 3 three 1 and my table2 is ID name parent 1 com 2,3 -->is table1.ID I want to relate between table2.parent and table1.id and show tree result : com -> one -> two,three How can I…
Mustafa
  • 58
  • 4
0
votes
2 answers

Relate DB id's Mysql

I would like to know how can I relate 2 id's. One frome users table and another from stats table. The id from users is AI , Primary and I want to relate the other id to this one. I tried Foreign key constraint (INNODB) and it gave me this error…
1
2