You want to feed the create.sql into sqlite3 from the shell, not from inside SQLite itself:
$ sqlite3 auction.db < create.sql
SQLite’s version of SQL doesn’t understand < for files, your shell does.
You want to feed the create.sql into sqlite3 from the shell, not from inside SQLite itself:
$ sqlite3 auction.db < create.sql
SQLite’s version of SQL doesn’t understand < for files, your shell does.