When I run \eon the command line while entering the command line tool psql, my default editor, sublime text, is having difficulty opening. However, when I enter the query as follows:
create table tutorials (
tutorial_id serial primary key,
title text,
author_id integer references authors(author_id)
);
Then click save and exit, nothing will happen! My request does not start. What am I doing wrong? How to fix it?
source
share