Multiple choice technology databases select * from dual ? A X NULL Error: Invalid SQL statement Error: Invalid Identifier Reveal answer Fill a bubble to check yourself B Correct answer Explanation In Oracle SQL, the DUAL table is a dummy table containing a single row with a single column DUMMY that has the value 'X'. Querying it with select * retrieves this default row and returns 'X'.