Tagged Questions
0
votes
3answers
49 views
SQL select query to return only if a record has a field of a single value
I have built my query here thus far:
SELECT POLICYNUMBER, FPLAN, FEFFYY, FEFFMM, FEFFDD, FINSTP, CLIENTNUM, FIRSTNAME,
MIDNAME, LASTNAME, BIRTHDATE FROM PFCASBENE
INNER JOIN CMRELATN ON ...
2
votes
1answer
86 views
Perl DBI - DB2 : fetchrow failing for 0 records
I'm migrating AIX scripts to Linux.
In a particular script
$sql_stmt6 = "SELECT CHAR(DATE(MAX(TIMESTAMP)),USA) FROM SCHEMA.TABLENAME WHERE COL1 = 194 and COL2 ='P'";
$sth6= ...
2
votes
2answers
52 views
Select: add a column based on sub select
I have the following scenario:
Using SQLDbx - database: DB2
The following SQL
WITH priceanddates AS
(
SELECT a.*
FROM FPRICE a
INNER JOIN
(
SELECT edate, MAX(idx) maxIdx
...
0
votes
3answers
37 views
Select individual records only
I have a table as such
custno, type, color
A1234, B, Red
A1234, C, Blue
A1277, B, Red
A1288, A, Black
A1288, B, Red
A1289, A, Black
I need to retrieve only the unique records A1277 and A1289 that ...
1
vote
1answer
132 views
sql [db2] select statement with condition
I have two tables.
player1 has rows username, score, game_id, ...
player2 has rows username, score, game_id...
how do you select the username with the biggest score for the same game_id?
what I ...
2
votes
1answer
77 views
SQL query which reformats results
Here is the example 'sales' table of data
Here is the desired output Result Set
Here is an example of the undesired Result Set that would be generated from this SQL statement.
SELECT Vendor, ...
-1
votes
1answer
214 views
Select all rows in a group where within the group, one column has one specific value, and another column has another specific value on the next row
I am new to SQL, so I’m not sure which approach is best for this kind of task:
I have a table where groups of rows all relate to the same item, whose name appears in the first column. Other details ...
1
vote
2answers
687 views
SQL / DB2 - retrieve value and update/increment simultaniously
I'm connecting to a DB2 database and executing SQL statements.
One example of what is being done is:
select field from library/file
[program code line finishes executing]
[increment value by ...
0
votes
2answers
73 views
Select Parent and Children in Single Column
I currently have this output:
ID Name Seq
--- ----- ----
82 Morris, Allan 1
82 Morris, Allan 2
82 Morris, Allan 3
82 Morris, Cynthia 1
82 ...
3
votes
4answers
220 views
SQL select from either one or other table
Assume I have a table A with a lot of records (> 100'000) and a table B with has the same columns as A and about the same data amount.
Is there a possibility with one clever select statement that I ...
0
votes
1answer
39 views
SELECT old data state with DB2
Is it possible to access old data state in an DB2 database?
Oracle has the clause select ... as of timestamp to do it. Does DB2 have something like it?
0
votes
3answers
810 views
DB2: group by interfering subquery in Select clause
I'm stuck with a SQL query. I'm making a subquery in the select clause and db2 prompts a -119 error telling:
"An expression starting with "FACILITY_ID" specified in a SELECT clause, HAVING clause, or ...
1
vote
3answers
3k views
SQL query merge two columns from two tables in one column of resulting table?
I have the following tables:
T1
ID
1
2
3
T2
ID SERVICE
1 PSTN
1 ADSL
3 ADSL
T3
ID DEV
1 3G
3 2G
I want as output
ID SERVICE/DEV
1 PSTN
1 ADSL
1 3G
...
0
votes
3answers
710 views
SQL query- ID not exist in another table or exist but with all records are in history?
i have table T1
ID
1
2
3
and table T2
ID HISTORY
1 1
1 1
2 1
2 0
I must select from T1 all records which does not exist in T2 or exists but all records are in history ...
1
vote
2answers
136 views
RegEx in the select for DB2
I have a table with one column having a large json object in the format below. The column datatype is VARCHAR
column1
--------
{"key":"value",....}
I'm interested in the first value of the column ...
1
vote
2answers
272 views
DB2 SQL *basic* SELECT statement w/ two conditions
I am trying to generate a report that shows records from a single table that meet either of two conditions:
1) "D" = 'ERR' and the record is less than a week old.
-- OR --
2) "D" = 'X' OR 'Y' AND ...
0
votes
1answer
183 views
Db2 select certain columns not working after set Integrity
Im learning DB2 and I had a problem while testing some options in my db.
I have 2 tables like this:
Country
=========
IdCountry -- PK
Name
State
=========
IdState -- PK
IdCountry -- FK to ...
0
votes
1answer
1k views
DB2 insert if not present and select
I have a DB2 database table
Users
------
userId: BIGINT
I need to return a row from the table for a user. If the row is not present it should be inserted and returned.
Is there a single statement ...
2
votes
2answers
2k views
why using LIKE with TIMESTAMPS do not work in DB2
i have problem using LIKE structure in DB2:
for example:
select * from TEST where TIME LIKE '2012-03-04-%'
FYI. - TIME is TIMESTAMP data type.
why using LIKE with TIMESTAMPS do not work?
...
0
votes
1answer
130 views
Strange DB2 Scopes
Create two tables with some ids overlapping.
create table outer_table (
id integer,
overlap_in smallint default 0
);
create table inner_table (
inner_id integer
);
Next, populate them ...
0
votes
2answers
154 views
sql query for select statement
need help/guide for sql select query, I have 2 table stock and stock_history, in stock will have initial values for stock
and before update the stock table,stock_history will be inserted 1st from ...
0
votes
2answers
624 views
In DB2 how keyword like LENGTH of SYSCAT.COLUMNS table can be used along with CONCAT in SQL Script to double the length of VARCHAR columns
In My below SQL LENGTH is a keyword and also a column name in table SYSCAT.COLUMNS. How can I correct below Query. I am getting exception
SELECT 'ALTER TABLE ' CONCAT TABNAME CONCAT ' ALTER COLUMN ' ...
1
vote
2answers
1k views
db2 query to select the first row fetched
I have a query like
UPDATE PRD_PRODUCT_L10N ppl
SET ( CATCHING_PHRASE
, GENERIC_NAME
, INGREDIENTS
, QUANTITY
, DOSE
, NUTRITION_FACTS
, PRODUCT_DESCRIPTION
, ...
0
votes
1answer
117 views
Select ID given the list of members
I have a table for the link/relationship between two other tables, a table of customers and a table of groups. a group is made up of one or more customers. The link table is like
APP_ID | GROUP_ID | ...
0
votes
1answer
895 views
DB2 Select Query with data in file
Lets say I have a csv file(ids.csv) with ids like
101,102,103......1MILLION
I wanted to select data from the table by reading ids from file in the where clause
Somthing like
select * from ...
1
vote
2answers
735 views
Complex SQL Query for retrieving specific rows from a table
I have 2 tables emp and emp_desc
emp table has columns empid,empname,eempaddress
emp_desc table has columns empid, empdescseqno, empdesc (for one empid we have multiple empdesc - it is not fixed)
...
0
votes
2answers
5k views
How to select distinct-columns along with one nondistinct-column in DB2?
I need to perform distinct select on few columns out of which, one column is non-distinct. Can I specify which columns make up the distinct group in my SQL statement.
Currently I am doing this.
...
0
votes
2answers
666 views
Returning null instead of empty rows for a particular column in an SQL query
We have a Table which is really a 2D array where each (Row, Column) represents a particular piece of data, for example (1,4) might represent the Location and (2,4) might represent the Price of pizza.
...
2
votes
1answer
4k views
How to write DB2 SELECT statement in unload job for delimiters
I have been over this... seems silly but couldnt figure out!
I wanna UNLOAD a table but with a delimiter '|' in between the fields. Here is the JCL used to unload the table:
//JS020 EXEC ...
2
votes
3answers
795 views
Use WITH inside a stored procedure
I am trying to use a WITH in a stored procedure, but am failing. My assumption was that I could use WITH as part of my SELECT statement; now I am unsure as to if it is possible and I'm doing it wrong, ...
1
vote
2answers
1k views
DB2 error on TSQL using SELECT AS alias and an inner join
I am writing a T-SQL program over a DB2 database on a LINUX box (DB2/LINUXX8664) using a linked server. I think the DB2 is Version 9.5.3 but not certain. I am receiving an error that I feel is likely ...
1
vote
1answer
2k views
DB2 SELECT using alpha wildcard and the length of 4 characters
I need to do a SELECT for a product_id where the length the product_id is 4 characters long and the last character can be any letter. I know the wildcard for selecting any letters but I don't know ...
5
votes
3answers
324 views
Is my understanding of “select distinct” correct?
We recently discovered a performance problem with one of our systems and I think I have the fix but I'm not certain my understanding is correct.
In simplest form, we have a table blah into which we ...
0
votes
3answers
215 views
How to “default” a column in a SELECT query
Say I have a database table T with 4 fields, A, B, C, and D. A, B, and C are the primary key. For any combination of [A, B], there is always a row where C == spaces. There may or may not be other ...
0
votes
2answers
9k views
How do I select min/max dates from table 2 based on date in table 1 (without getting too much data from sums)
Related to a question I asked earlier here, I've found a problem which is eluding me (obviously).
The original question was how to select a min and max date from a daily table based on a monthly ...
0
votes
1answer
940 views
How do I select min/max dates from table 2 based on date in table 1?
I have a monthly table (only holds rows with first day of month, and unique constraint so only one of each) and a daily table with similar information for each day (same deal, only one per day):
...
0
votes
2answers
964 views
Is it possible in DB2 or in any Database to detect if the table is locked or not?
Is it possible in DB2 to detect if the table is locked or not. Actually whenever we use Select statement and if that table is locked [ may be because of on going execution of insertion or deletion ] , ...
0
votes
1answer
1k views
Why does DB2 CHAR() function return '24:00:00' for a time field that is 00:00:00?
I'm querying DB2 on i (AS/400). A plain SELECT statement on a column with datatype of TIME returns 00:00:00, but when I use the CHAR() function it returns '24:00:00'.
I understand that 24:00:00 is a ...
2
votes
2answers
663 views
Order a select result case insensitively?
Is it possible to order the result of select query on a db2 database case insensitively?
For example:
I want to have all names that start with an "a" or "A" sorted together.
Abraham
aron
andrea
...
