Writing Queries In English to Create An Address Book On A PostgreSQL Instance

Structured Query Language, or SQL, is my favorite programming language, but its quirky syntax can sometimes be frustrating. Many have professed a need to bypass SQL and query databases in English (another quirky language. Is it possible to have an Artificial Intelligence take a request in English and translate it into SQL on my behalf? I am using the AI Chat Feature of DBeaver Enterprise to test. The Prompt My prompt was Create a table in this postgresql database to hold address book information and then add ten example records from random data to OpenAI. The Response Sure, let's create a table named `address_book` with the following fields: `id`, `first_name`, `last_name`, `email`, `phone_number`, and `address`. CREATE TABLE address_book ( id serial PRIMARY KEY , first_name varchar ( 50 ), last_name varchar ( 50 ), email varchar ( 100 ), phone_number v...