Distinct values with earliest datestamp.
I have a dimension table where new values found in my datasets are added, and a datestamp populated in a column. I have found that I have to do a final sweep in SQL to remove duplicates because of Domo's handling of some invisible characters found in some data feeds.
A select distinct statement works for the majority, but I have a handful of values that keep pushing duplicates. I realized that the statement won't work on rows with the same company name, but different datestamp values.
What do I need to add to SQL for it to identify duplicate values in one column, and keep the row with the earliest datestamp?
@ValientSpur - This is similar to another one you solved, but different enough that I want to make sure you get the solution if you give it to me.
Breaking Down Silos - Building Bridges
**Say "Thanks" by clicking a reaction in the post that helped you.
**Please mark the post that solves your problem by clicking on "Accept as Solution"
Comments
-
You could try something like this:
SELECT `CompanyName`, MIN(`Datestamp`) AS 'DateStamp'
FROM dataset
GROUP BY `CompanyName`That would leave you with a single entry for each unique CompanyName and the earliest date value associated with it.
Is that what you're looking for, or am I missing something?
Sincerely,
ValiantSpur
**Please mark "Accept as Solution" if this post solves your problem
**Say "Thanks" by clicking the "heart" in the post that helped you.0
Categories
- All Categories
- 1.2K Product Ideas
- 1.2K Ideas Exchange
- 1.3K Connect
- 1.1K Connectors
- 273 Workbench
- Cloud Amplifier
- 3 Federated
- 2.7K Transform
- 78 SQL DataFlows
- 524 Datasets
- 2.1K Magic ETL
- 2.9K Visualize
- 2.2K Charting
- 433 Beast Mode
- 22 Variables
- 509 Automate
- 114 Apps
- 387 APIs & Domo Developer
- 8 Workflows
- 26 Predict
- 10 Jupyter Workspaces
- 16 R & Python Tiles
- 331 Distribute
- 76 Domo Everywhere
- 255 Scheduled Reports
- 65 Manage
- 65 Governance & Security
- 1 Product Release Questions
- Community Forums
- 40 Getting Started
- 26 Community Member Introductions
- 67 Community Announcements
- 4.8K Archive