Skip to main content
Filter by
Sorted by
Tagged with
-4 votes
0 answers
65 views

I have a table: CREATE TABLE items ( item_date DATE, item VARCHAR(50), price DECIMAL(10,2) ); INSERT INTO items (item_date, item, price) VALUES ('2020-01-01', 'APPLE', 1.50); INSERT INTO ...
stats_noob's user avatar
  • 6,889
1 vote
1 answer
91 views

In Access 2016, I have 3 related tables: Series tblSeasons tblEpisodes Trying to write SQL to get a list of Series with a number of conditions. I have found that the following works perfectly fine. ...
user3173098's user avatar
-1 votes
3 answers
114 views

I have a large MySQL table in phpMyAdmin, and I want to clear all data in a specific column. I know how to do it using: UPDATE table_name SET column_name = NULL; Or by dropping and re-adding the ...
ADIL RADIDI's user avatar
Advice
0 votes
2 replies
24 views

I am working on a C-UDF for Postgres, where i would like to somehow read from a passed Typed-Tuplestore in parallel. Either pthreads or worker-processes is fine, as long as the access isn't combined ...
Clebo Sevic's user avatar
-2 votes
2 answers
110 views

I have 2 tables Table1: ID rule_id_1 rule_id_2 1 12345 67889 2 54321 12345 Table2: rule_id rule_name 12345 Error Detected 54321 Job Completed Goal is to have a table like this: ID rule_id_1 ...
Abel's user avatar
  • 15
0 votes
0 answers
38 views

While using the aggregation functions in Apache IoTDB (version 2.0.5, tree model), I noticed that the result of the SUM function does not match the expected value, showing a noticeable floating-point ...
Cecilia Wong's user avatar
1 vote
0 answers
88 views

I have next PostrgreSQL query: SELECT * FROM person WHERE birth_date between ? and ? and gender = ? and ST_DWithin(location, ST_MakePoint(?, ?), 20000) and activity_date <= ? and id < ? ...
sankranti's user avatar
0 votes
1 answer
83 views

I am having some trouble with a CASE expression inside a JOIN. Essentially, what I would like to do, is whenever a FormLookupId = 31 I want to join on any record with the a specific string in the rl....
Unconquered82's user avatar
1 vote
2 answers
66 views

I've got this situation in which I need to copy and split account information: -- old create table old_account ( id bigserial not null primary key, uid varchar(32) -- , etc. ); insert into ...
Code4R7's user avatar
  • 3,186
-4 votes
0 answers
49 views

I need to flatten the JSON below in a way that will follow the logic: 1 actions can be repeated 1 personId repeated however per 1 personId will go unique feeType or correspondenceValue. also, ...
Xamiran Akiranbo's user avatar
-3 votes
1 answer
94 views

I have this table here as example: Group Where Bill Amount A from telephone -300 A from internet -200 A to electricity 500 B from water -1000 B to cable 500 B to gas 500 When you query Group A. The ...
Melz's user avatar
  • 9
Tooling
0 votes
6 replies
83 views

I am in the process of becoming a data analyst and I am having a hard time understanding when to use SQL and when to use R. I have tried re-watching videos of my data analyst course, but I am still ...
Dacian Joel Alvarez's user avatar
1 vote
1 answer
91 views

can you tell me why i get Character Set Mismatch in the first insert even if "in theory" they are equivalent? Oracle version: 19 SD.ValueText is NVARCHAR2 SELECT value FROM ...
thefiery77's user avatar
-6 votes
0 answers
77 views

CREATE TABLE IF NOT EXISTS abcatedt ( abe_name char(30) NOT NULL , abe_edit char(254) , abe_type smallint , abe_cntr integer , abe_seqn smallint NOT NULL , abe_flag integer ...
Igor's user avatar
  • 6,492
-3 votes
1 answer
66 views

I have a table with a list of claims for members that have specific service date ranges. The other table has a table of COE descriptions. The COE changes for some members and is indicated by the ...
Isabel's user avatar
  • 5

15 30 50 per page
1
2 3 4 5
44962