Search found 2 matches

by PDD84
Mon Nov 02, 2015 3:09 pm
Forum: PATSTAT Product Line
Topic: Selecting a subset of results: equivalent to MySQL's LIMIT?
Replies: 2
Views: 2898

Re: Selecting a subset of results: equivalent to MySQL's LIM

Thanks a lot for your detailed and quick reply. I think I didn't have an ORDER BY clause earlier. I'll try it with your suggestions.
by PDD84
Sun Nov 01, 2015 7:36 am
Forum: PATSTAT Product Line
Topic: Selecting a subset of results: equivalent to MySQL's LIMIT?
Replies: 2
Views: 2898

Selecting a subset of results: equivalent to MySQL's LIMIT?

Hello, I'm trying to download the titles of all Samsung patents via PATSTAT Online. The following query works well to find them: SELECT DISTINCT a.appln_id FROM tls201_appln a join tls207_pers_appln on tls207_pers_appln.appln_id = a.appln_id join tls206_person on tls206_person.person_id = tls207_per...