in mysql i can create a table named "select" using the following statement
CREATE TABLE `SELECT` (
Id INT,
Name VARCHAR(255)
}
and it executed successfully and the table is created by the name "select" as you can see the image above. But the same couldn't be done in oracle 11g.
What would be the sql query that's required to create a table named "select" in other sql databases