The command:
CREATE TABLE IRdata (ego int, altr VARCHAR(20), species VARCHAR(20), sex CHAR(1), birth DATE, death DATE);
works, but
CREATE TABLE IRdata (ego int, alter VARCHAR(20), species VARCHAR(20), sex CHAR(1), birth DATE, death DATE);
does not. The only difference is the "e" in "alter" for the second column.
I have the latest MySQL install on the Ubuntu repos, running Ubuntu 18.04.
Any help is appreciated.
Thanks!