I am new to posrgresql. I created a table called games where I have three columns: country, games, year. I am trying to insert some data to it using this code:
insert into games values("USA", "Baseball", 2012), ("China", "Wrestling", 2011), ("England", "Cricket", 2015), ("India", "Cricket", 2011), ("USA", "Football", 2018), ("Spain", "Football", 2014), ("China", "Basketball", 2019), ("Italy", "Football", 2017);
I am getting this error: ERROR: column "USA" does not exist LINE 2: values("USA", "Baseball", 2012),
What is wrong here? Thanks in advance.