How to add Header to Recyclerview using Sql records - android-recyclerview

I WANT TO ADD HEADERS TO RECYCLERVIEW USING SQL TABLE COLUMN
Example given below:
Sql query result:
Query : select column1 from table
result :
One
Two
Three
Four
Five
So I want to add the result to my recyclerview header like below
Recyclerview Header;
One Two Three Four Five
How to implement java code to get the result as expected. Please someone help me

Related

Split the values in my sql table to individual records which have the same values for all the other columns except the column which will be split into

I have a table as given below:
I want to split the records in such a way that the multiple Apps for a single ID are displayed separately keeping the rest of the field information same. Like below.
I have tried a few ways but was unable to achieve the desired results, like below I used the following query
select t1.ID, t1.Apps
from ImpactedProjects t1
outer apply dbo.DelimitedSplit8K(t1.Apps,';') where ID=13
but it gave the following output.
Any help is appreciated.

ms access, need to get all rows with a distinct column

I have a table called "parts" which stores information on electrical connectors including contacts, backshells etc. all parts that are part of an assembly have a value in a column called "assemblyID". There is also a column called "partDefID", in this column connectors will have a value of 2, contacts will be 3. I need to get rows for all connectors that have a unique assemblyID. It's easy to get rows that represent connectors just by selecting rows with a partDefID of 2 but this will return multiple rows of connectors that may be part of the same assembly. I need only those rows of connectors with a unique assemblyID. How can I do this?
see image below:
what I am trying to get is just ONE of the rows shown below, any one of them would be fine as they are all part of the same assembly.
just one of these rows needed
[update]
it seems my question was not well formed and the use of images is frowned upon. Inserting a text version of my table looked REALLY horrible though! I'll try to do better. yes, I'm a newb at both sql AND this website
If you want just one "connector" row per assembly ID, you can filter with a subquery. Assuming that PartRefID is a unique key:
select *
from parts as p
where [PartRefID] = (
select max(p1.[PartRefID])
from parts as p1
where p1.[AssemblyID] = p.[AssemblyID] and p1.[PartDefID] = 2
)
I don't know if this is what you are looking for
SELECT assemblyid,count(partdefid)
FROM parts
WHERE partdefid=2
GROUP BY partdefid,assemblyid
HAVING COUNT(partdefid)=1

HIVE :- Read latest row if all coloumns matches

I need to select rows if all the column value matches and take the latest one assume that others are duplicate to it . but if any one column data not matched with the other row I need to show both the rows.
ex
My table sample data may look like below
My expected result is
I tried to get the max of it and I am getting only one row instant three rows per name.
My actual table contains 40 columns and I gave only the sample data and expected result for understanding

try to have a single row view from several tables in group by in view

The is one to many relation between first column in first table to first columns for the next two tables
When I make a view with union all between the three tables I can’t have a one row result because the value fields with the yellow color are group by.
The best result I get is to select first() in the yellow column of first table and 0 in the others but I see this as source of error and the result not a single row.
What I can do in the view to have a single row result like this
a pictures for the three table

How to build SQL query for associated values?

I am using PyODBC to fetch some data, since I am not fetching all data in my table, I need to write a query which grabs only rows which have associated columns. For example my initial query is:
SELECT SRNumber FROM SO_SC_1 WHERE SRNumber LIKE '%1-%'
This returns the SRNumber values that I want.
Next I want to return the associated last edited user with this SRNumber. This column is named last_edited_user. What is the proper syntax to incorporate multiple queries into one for this scenario? Basically I would like to use the initial query and grab all associated data for each SRNumber.
You query all needed columns using their comma separated names
SELECT SRNumber, last_edited_user
FROM SO_SC_1
WHERE SRNumber LIKE '%1-%'