79513212

Date: 2025-03-16 20:44:02
Score: 1
Natty:
Report link

It looks like you are trying to get data from table 'income_dataset' into your new table 'substring_income_dataset' so do the following instead:

CREATE TABLE substring_income_dataset AS SELECT year, substring(income_total, 1, 2), benefit_type FROM income_dataset;

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Genesis Guerra Tavarez