Can ChatGPT Write good SQL?

Can ChatGPT Write good SQL?

Would you let #ChatGPT write #SQL for you?

I asked ChatGPT: write sql to delete duplicate records in Oracle database table called employee, for duplicate employee_id

ChatGPT: To delete duplicate records in Oracle database table called employee for duplicate employee_id, you can use the following SQL query:

DELETE FROM employee 

WHERE ROWID NOT IN 

(

 SELECT MAX(ROWID) 

 FROM employee 

 GROUP BY employee_id

);

Explanation:

  • The ROWID is a pseudo-column that represents the physical address of a row in a table.
  • The MAX function is used to select the row with the highest ROWID for each group of employee_id.
  • The GROUP BY clause is used to group the records by employee_id.
  • The NOT IN operator is used to exclude the rows with ROWID that are not in the subquery.
  • The subquery selects the maximum ROWID for each group of employee_id.

This query will delete all the duplicate records in the employee table for each employee_id, and keep only the record with the highest ROWID.

To view or add a comment, sign in

More articles by Shyam Varan Nath

  • Generative AI and Hallucinations

    In August I had attended the CIO100 event by IDG (International Data Group) and this week attended Oracle Cloudworld…

    19 Comments
  • Getting Ready for Oracle Cloudworld and GenAI?

    As I am getting ready to be at Oracle Cloudworld (OCW) from Sep 18 to Sep 21. While I will be speaking in 3 different…

    1 Comment
  • A New Operating system for Health Care

    Recently Deloitte and Oracle published a White Paper titled: "The Future of Work in the Age of Artificial Intelligence"…

  • Oracle SQL and Generative AI

    I had done the first post around use of Generative AI tools like #CharGPT to generate Oracle SQL here. I decided to…

    4 Comments
  • Driving Competitive Advantage through Oracle Cloud, Edge Computing and AI

    I have been experimenting with #ChatGPT and #Google #BARD #AI I asked BARD to summarize our recently released white…

    1 Comment
  • Cloud, Edge Computing and AI

    We at Deloitte recently wrote a whitepaper (WP) titled "Driving Competitive Advantage through Oracle Cloud, Edge…

  • Oracle Fusion Analytics Warehouse (FAW) with Private Endpoints

    Are you using Oracle Fusion Analytics Warehouse (FAW) to create insights for your Oracle Fusion ERP and HCM…

  • What is New Radio (NR) in 5G?

    Wondering what is "new" about the "radio" as we start to adopt #5G? New Radio (NR) is the air interface for 5G cellular…

    6 Comments
  • Oracle's Next Quest

    "Our expertise has always been running the hardest, most complex jobs," Barron's quote Oracle CEO Safra Catz, in a…

  • My Distinguished Toastmasters (DTM) Journey

    My Toastmasters journey started in early 2014. I was a Charter Member of Electric Speakers Toastmasters Club at General…

    1 Comment

Others also viewed

Explore topics