0
이 오류가 발생하는 이유는 확실하지 않습니다. 오류 1054 (42S22) : 알 수없는 열 ''CompanyA '' '필드 목록'.오류 1054 (42S22) : 알 수없는 열 'CompanyA' 'in'field list '
DROP TABLE IF EXISTS `company`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `company` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(45) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
/*!40101 SET character_set_client = @saved_cs_client */;
INSERT INTO `company` (`id`, `name`) VALUES (1, “CompanyA”);
INSERT INTO `company` (`id`, `name`) VALUES (2, “CompanyB”);
은' "의 companyâ"'와' "CompanyB"'표준 사용에 인용 부호이다 '''따옴표 대신. –
@ObsidianAge이 오류가 발생합니다 : 'ERROR 1054 (42S22) : 알 수없는 열' 'CompanyA' 'in'field list'' – Jonathan
안녕하세요. 따옴표에 문제가 있습니다. 구글 매뉴얼과 따옴표에 대해 읽어보십시오. 스마트 쿼트가 아닌 유니 코드 따옴표 ('''''''')를 사용하십시오. 특정 이름/문자열이없는 오류 메시지를 Google에 보내고 많은 답변을 읽으십시오 [ask] & downvote arrow mouseover text를 읽으십시오. – philipxy