Multiple choice technology databases select version from dual ; Error: "VERSION": invalid identifier Error: "VERSION": invalid character Error: invalid SQL statement shows oracle database version Null Reveal answer Fill a bubble to check yourself A Correct answer Explanation VERSION is not a column in the DUAL table. Selecting a non-existent column causes ORA-00904 invalid identifier error. To get version info, use V$VERSION or PRODUCT_COMPONENT_VERSION from the dictionary views, not DUAL.