-
DescriptionI just uninstalled dbeaver, downloaded and installed the latest community version, and restarted my machine. I have a valid query and i can view the data using the dbeaver gui but the normal which seems surprising??? DBeaver Versioncommunity edition, just downloaded and installed Operating Systemwind 10 Database and driverNo response Steps to reproducesee above with pictures Additional contextsee above |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
but the above is inside of a function that had not been compiled. One might have thought that a select * from scratch2; -- that is selected and running the code from inside the function as in I am editing this function or trying a part of it-- should not have been a problem, since the scratch2 exists on the HD. Nevertheless, when I run select * from scratch2; outside of the function, it works. |
Beta Was this translation helpful? Give feedback.
-
As far as i can see on this screenshot, there is no Here are some screenshots from DBFiddle:
Everything looks correct. Asking to select something - gives something in result. Asking to select nothing - gives nothing in result. |
Beta Was this translation helpful? Give feedback.
-
sorry sorry youre correct |
Beta Was this translation helpful? Give feedback.
As far as i can see on this screenshot, there is no
*
character between the SELECT and FROM keywords.You didn't specify the database you are using these queries with, but Postgre handles this.
For me it seems obvious that having no columns specified for selection, the result will be empty.
Here are some screenshots from DBFiddle:
SELECT * FROM table
gives data resultSELECT FROM table
gives empty resultEverything looks correct. Asking to select something - gives something in result. Asking to select nothing - gives nothing in result.