Need a sql query: retrieve all duplicate records in table?
Answer / ssd
SELECT username, email, COUNT(*) FROM users
GROUP BY username, email HAVING COUNT(*) > 1
| Is This Answer Correct ? | 1 Yes | 0 No |
what is the difference between the procedure and module in ILERPG?
3 members in a databasefile .how to read records from all the members?????????
In a particular program one file is used where override command is applied to a file, now this program calls another program where we want to use the same file but without override.How it can be done?
How to sort an array in descending in RPG
How can we find out whether the job is interactive or Batch through RPG program? 2) How can we find out through CL program?
parameters cannot be passed in which one???
RPG/400 faqs?
1.String operatio such as moving the characters to the variables? 2.what are the building functions for check file longs? 3.which of the following methods will make externally describe file fields available to a program? A: A/copy statement that specifies the library file and member of the field reference file source code B: A data structure definition specification that names the file on the EXTNAME keyword C: A data structure definition specification that names the file on the IMPORT keyword? D: A Definition specification for each desired field with the REFFLD keyword
You have a *USE authority on a Library and *All authority on a file in that Library.Can you change the data in that file?
what is estimation? and what is the level identifier parameter in PF?
how to retrieve RRN value in RPGLE program
If I have a file with 5 record and that file has 2 Key field and I want to read the unique record of the file then how can we achieve it?