Posts by Melkisidek Pedro • 1 point
2 posts
-
-1
votes2
answers153
viewsA: LIMIT and OFFSET duplicates data in mysql
LIMIT and OFFSET do not make data repeat. In the picture I see no repeated data. To not show duplicate value use if DISTINCT. SELECT DISTINCT functionary.name FROM employee LIMIT 0, 2…
-
0
votes1
answer30
viewsA: search database specific row to fill table
Your explanation is a little confusing. But I’d do it in your image. With 2 or more Inner Join I think we can solve your case.…