I want to create table Books, My syntax:
Books
What is wrong with my code?
You're using angle brackets (<>) where you should be using parentheses (()).
<>
()
CREATE TABLE books ( isbn INT PRIMARY KEY, title VARCHAR (20), price DOUBLE );