Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
85 views

I am trying to get JSON extract from a column value in redshift. The column value is like: [{'IDIndex': '0001', 'History': 4, 'Name': '08-SA-21-C1', 'ActiveFlag': 1, 'Category': 3, 'TotalCount': 0, '...
nodev_101's user avatar
  • 109
0 votes
1 answer
355 views

panel alert date X [{"name":"x1","user_text":"","user_text_overflow":""},{"name":"y1","user_text":"",...
Shivang's user avatar
0 votes
1 answer
96 views

my query: SELECT CAST(employee_id AS INT) AS employee_id, employee_email, gender, custom_fields_json FROM xxxxxx_employee WHERE employee_id IS NOT NULL ORDER BY ...
Sandeep Sharma's user avatar
0 votes
1 answer
65 views

We have an Athena table in which there is a column that contains JSON values. The datatype of the main column(which contains JSON values) in Athena is a string datatype. DDL of Athena table is like ...
Beginner's user avatar
0 votes
0 answers
41 views

I'm using MySQL v5.7.42 and Go v1.21.0 with the volatiletech/sqlboiler v3.7.1 library. I have a table with a JSON column, and I'm trying to sum values extracted from this JSON using JSON_EXTRACT(). ...
ken's user avatar
  • 17
0 votes
2 answers
181 views

I have this data in a json column #mycolumn { "key": "KEY", "elements": [ { "name": "NAME_1" }, { "name": "NAME_2" } ...
fguillen's user avatar
  • 39.5k
0 votes
1 answer
36 views

I have a JMeter test plan and a part of it extracts values from a request's response. So far, I've successfully retrieved three sets of values using JSON extractor and have been able to assess the ...
theartsycoder's user avatar
0 votes
1 answer
64 views

I am using JMeter's JSON extractor to pass a variable id from one request to another. This is the response of the first request (https://reqres.in/api/users?page=2): { "page": 2, "...
Mohamed Samir's user avatar
0 votes
1 answer
39 views

i am testing on a api and the url link for that api is : https://petstore.swagger.io/v2/pet/findByStatus?status=available and it returns us a json response and json response varies every time the test ...
Rakesh's user avatar
  • 23
0 votes
1 answer
50 views

i am testing the api and i have a request and it returns me a json response and by using the json extractor i have extracted the id from the json data and store it in a variable. the http request ...
Rakesh's user avatar
  • 23
0 votes
2 answers
79 views

I have a students_data table with a json column like this. CREATE TABLE students_data (doc_id INT, doc_data JSON); A row is inserted with doc_id = 101. The json content in the row is: { "...
Iniyavan's user avatar
  • 113
0 votes
1 answer
167 views

I have a JMETER load test, I use with JSON extractor, I have 30 threads, each one of them run on another data, I want that each variable use in own thread. For example: each of thread run on another ...
אלישבע שלזינגר's user avatar
1 vote
1 answer
39 views

Response from the JSON Request A has 2 values columnID and rowID. These values are extracted using JSON extractors. There is another request B and request Body data looks like this: { "...
Raxon's user avatar
  • 33
0 votes
1 answer
25 views

Thread group has 4 requests, first being the Login request.The test plan is executed in a way that login request executes only once and other 3 request are iterated multiple times. A value "...
Raxon's user avatar
  • 33
0 votes
0 answers
115 views

In SQLite, I want to insert the following json data into two related tables, form (parent) and waterIntake (child), connected through the foreign key 'currentDate' in waterIntake that references the ...
maraxai's user avatar
0 votes
1 answer
80 views

I have a table with a JSON column. The JSON column holds for each row, a JSON array with JSON objects such as this [{"my_value": 42, "category": "A"}, {"my_value&...
Bjarke Kingo's user avatar
2 votes
2 answers
657 views

I have a table 'sometable' with a JSON field named 'jsonval', which contains a JSON object with the property 'programs' that contains an array of objects with the property 'id' I want to search for ...
Overbeeke's user avatar
  • 2,028
0 votes
1 answer
767 views

I have a BQ table that contains potentially very large JSON objects. I require a only one property (key:value pair) from each JSON object, so it is my preference to first select the JSON property ...
Matthew Starr's user avatar
0 votes
1 answer
370 views

My requirement is to create a Materialized view on redshift containing flattened data from nested Dynamodb JSON format. I have tried most of the ways provided by AWS as well as creating a function or ...
Mahi's user avatar
  • 3
0 votes
0 answers
20 views

Hope, I was able to put the question in right way. here I have a following table in mysql DB. Table Name: Company OrgName config TestCompany {orgld=24,Sector:IT) How to form a mysql query to extract ...
Indresh Kumar's user avatar
0 votes
1 answer
289 views

{ "a": [ { "b": { "c": [ { "id": "123" } ], "d": { "e&...
pavan kumar's user avatar
1 vote
1 answer
204 views

I am wanting to split out 'housing' key onto different rows. So in this example I would expect 4 rows. Within each row would have the following columns: id (this is the key on the table), housing.id, ...
Chris's user avatar
  • 41
0 votes
1 answer
110 views

I have below JSON response from the request. I'm aware how to extract value from the response using JSON Extractor but here I have different json response without stating curly braces and it start ...
BhavinD.'s user avatar
  • 481
0 votes
1 answer
105 views

I have a JSON data as below [ "{\"category\":\"a\"}", "{\"category\":\"b\"}", "{\"category\":\"c\"}",...
Yousuf Sultan's user avatar
0 votes
2 answers
395 views

I have a JSON column that stores an array of objects, each object having 2 properties: [ { "title" : "CALCULATED", "applies" : true }, { ...
user avatar
1 vote
1 answer
160 views

I'm trying to get the value of a property, contained inside a JSON object, satisying the condition that the name of another property matches a specific value. Let's say I've got the followig JSON ...
txapeldot's user avatar
0 votes
2 answers
868 views

I have a string which represent array of jsons like '[{json}, {json}...]' in this jsons I have similar keys like metric: '[{"metric": "", }, {"metric": "", }]'. ...
Axel HK's user avatar
  • 117
0 votes
0 answers
48 views

Trying to query on AWS Athena table which have column containing data as below : [{'abc': {'field1': 1683215785219, 'field2': None, 'field3': None, 'field4': None, 'field5': 1}, 'emp': '40', '...
dips's user avatar
  • 3
0 votes
1 answer
50 views

I am trying to return only the rows when tags column contain "environment" value Table: Data Column: tags VARCHAR ( 40 ) {"environment":"prod", "version":"...
user18282672's user avatar
1 vote
1 answer
852 views

Fiddle link: https://www.db-fiddle.com/f/u6ZXKW8TgFkDH5o2FhppgD/0 I have a query: SELECT JSON_EXTRACT(value, '$.characterId') AS character_id, JSON_EXTRACT(value, '$.voiceActor') AS ...
appleman's user avatar
  • 160
0 votes
2 answers
96 views

id lessons 1 ["3M-232","3M-313"] 2 ["3M-311","3M-312"] 3 ["3M-443","3M-565"] 4 ["4M-232","4M-313"] 5 ["4M-311",...
Enock Willy's user avatar
-1 votes
1 answer
178 views

I have added one sampler & get the response of it. In Response there is Big Json array, like There are multiple AppObjects array & In one AppObjects array there are multiple DSQ array. Now i ...
Krina Modi's user avatar
0 votes
0 answers
104 views

My table structure in MySQL CREATE TABLE `user_data` ( `id` int(11) NOT NULL, `user` varchar(100) NOT NULL, `data` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL CHECK (json_valid(`...
prabhakaran's user avatar
0 votes
0 answers
253 views

I'm storing JSON documents in one of the columns of an SQLite table. The following query works fine if executed from the SQLite CLI SELECT jsonfield.value FROM dataset, json_each(dataset.samples) as ...
LeMoussel's user avatar
  • 5,829
0 votes
1 answer
193 views

Is there's a way I could extract the highest id: "15" of bld-appliance-1 using Json Path expression. Currently if use this Json expression "[?(@.name == 'bld-appliance-1')]..id" it ...
Harris's user avatar
  • 185
0 votes
1 answer
382 views

I have two variables whose values i have extracted from the response body using JSON Extractor [Here is the image showing two variables][1] [1]: https://i.sstatic.net/E0RKx.png In JSR223 PostProcessor,...
Krina Modi's user avatar
0 votes
1 answer
701 views

I want to extract the complete record elements from json_to_recordset(). How to get it. Below is the description of my problem statement: Description I have one column with JSON Type and with the ...
NIKHIL SUTHAR's user avatar
0 votes
1 answer
127 views

I have data in one of my table columns as like {x:1,y:2} . I wanted to cast the data to json like {"x":"1","y":"2"} I tried to use JSON_QUOTE and cast as JSON ...
Pvria Ansari's user avatar
1 vote
3 answers
1k views

I am getting below response while running an API. { "bookingId": 0, "bookingIds": { "13320134": "2023-05-01T04:30:00", "13320135&...
rAJ's user avatar
  • 1,443
0 votes
1 answer
83 views

I have a table with a column which stores data in JSON format. How do I extract JSON values into columns only when there's a new entry or an existing row is updated instead of extracting all the rows ...
user21504785's user avatar
1 vote
2 answers
694 views

My table looks like this: id data 1 {tags: {"env": "dev", "owner": "me"}} I want to fetch the data and inside the select query convert the data column to the ...
BenLa's user avatar
  • 37
-3 votes
1 answer
276 views

Json Object {"images": ["https://bijnis.s3.ap-south-1.amazonaws.com/2487dc60-c3b5-4cf9-a3a2-34f73683ac5a.jpg"], "remarks": "done", "documentList": [{...
Uttam Kumar Gupta's user avatar
2 votes
0 answers
456 views

I have a query that is very fast in finding the records it wants, but it takes too long to "extract" the data from the JSON field if I have a few hundred results. Is there a way to speed up ...
shiftyllama's user avatar
0 votes
0 answers
680 views

Would appreciate if you can help a mariaDB newbie with this. I have a mariaDB database table called 'brand' with data as below. Datatypes are VARCHAR and JSON. name varchar(255) NOT NULL sold ...
Baton8546's user avatar
0 votes
0 answers
33 views

Answers to a questionnaire are stored in json in a column in this table. I need to pull out the answer to a specific question stored within this column, but am struggling to do so. I want to get the ...
SpruceMoose's user avatar
1 vote
1 answer
2k views

I have an athena record with a json string as below. {'is_referred': False, 'landing_page': '/account/register'} I tried to extract the landing_page value with query below but it returns null value. ...
Lee's user avatar
  • 3,062
1 vote
3 answers
2k views

I want to extract some values for particular keys from a table with json string as below. raw_data ... {"label": "XXX", "lines":[{"amount":1000, "category&...
deepAgrawal's user avatar
1 vote
2 answers
1k views

I am trying to extract the value of a key in a json and it isn't being recognized properly : This is what I expected : mysql> SET @json_ = '{"year":"2022"}'; Query OK, 0 rows ...
Aravinth Balakrishnan's user avatar
1 vote
1 answer
2k views

Having this in column named "value" on table named "test" with varchar data type: '{"3": "3", "2": "7", "6": "1", "...
Daniya  Cranberry's user avatar
0 votes
0 answers
16 views

I have a table with JSON data like this: {"entries": [{"color": "blue", "value": 15, "name": "john"}, {"color": "red", &...
shalomew's user avatar