Query Key Values

I currently have a data table that that uses key/values similar to this: 

 

param_table{

id,

taskId,

key,

value

}

row1 {

1,

123,

"string",

1

}

 

row2{

2,

123,

"string2",

2

}

 

I need to return taskId based on key{string,string2} & value{1,2}. What would be the best way to do this? 

  Discussion posts and replies are publicly visible

Parents Reply Children
No Data