sql error: Unknown column in 'field list' on insert
use
INSERT INTO dbcs.born in VALUES ('Alanis Morissette',1974,1.0)
Strings must be wrapped in quotes. You're using ticks which are not correct.
INSERT INTO `dbcs`.`born in` VALUES ('Alanis Morissette',1974,1.0)