Hi @fmorillas85,
One thing I can see is that you should be replacing the word table
in the SELECT * FROM table
line with the table’s name i.e.
SELECT * FROM myGoogleCollabTable
The word table
is a reserved keyword in any SQL language I’ve heard of so it wouldn’t be possible for you to name a table as table
.