create table class_1(column1,column2)
while inserting values
INSERT INTO class_1 (column1, column2, [Section])
VALUES(1, 'First')
Erorr: SQL Error: ORA-01747: invalid user.table.column, table.column, or column specification
01747. 00000 - "invalid user.table.column, table.column, or column specification"
[Section]is an invalid identifier. You can't use[or]in an identifier in SQL. See the chapter "Basic Elements of Oracle SQL" in the manual: docs.oracle.com/database/121/SQLRF/… - a_horse_with_no_name