I am trying to modify a table in an Oracle database by adding two new columns with an SQL query to it, as shown below:
ALTER TABLE Members ADD annual_dues NUMBER(5,2) not null DEFAULT '52.50', ADD payment_date DATE;
When doing this, I get an error message as shown below:
SQL Error: ORA-30649: DIRECTORY Keyword Missing
I played around him, but that didn't help. What is wrong with the SQL query?
Sarahfromnowhere
source share