We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
create_table_query = """ CREATE TABLE IF NOT EXISTS HomeRentals ( number_of_rooms INTEGER, number_of_bathrooms INTEGER, sqft INTEGER, location TEXT(128), days_on_market INTEGER, initial_price INTEGER, neighborhood TEXT(128), rental_price FLOAT(64,64) );""" cur.query(create_table_query).df() Empty DataFrame Columns: [] Index: []
The text was updated successfully, but these errors were encountered:
How does the following sound? If created:
Table HomeRentals has been created.
If already exists
Table HomeRentals is already existed. Nothing added.
Sorry, something went wrong.
I would rephrase: Table HomeRentals is already existed. Nothing added. as: Table HomeRentals already exists.
Table HomeRentals already exists.
The "Nothing added." part feels redundant but I can see the logic in being explicit that no action was taken.
Successfully merging a pull request may close this issue.
Search before asking
Bug
Environment
Are you willing to submit a PR?
The text was updated successfully, but these errors were encountered: