gpt4 book ai didi

MySQL 字符串比较查询给出意外的双列或未知列错误

转载 作者:行者123 更新时间:2023-11-29 11:35:21 25 4
gpt4 key购买 nike

我在执行非常简单的 MySQL 查询时遇到问题。我正在表中搜索字符串字段具有特定值的行。如果我要比较的字符串在引号中,我会收到“未知列”错误。如果字符串不在引号中,我会收到“非法双重错误”。

我提出的查询是(不带引号):

SELECT * FROM `userprofile_userprofile` WHERE `userprofile_userprofile`.`firebaseUID` = 4929e406-9d75-43e2-afa4-fe641f3e85f5

和(字符串两边加引号):

SELECT * FROM `userprofile_userprofile` WHERE `userprofile_userprofile`.`firebaseUID` = `4929e406-9d75-43e2-afa4-fe641f3e85f5`

这是我的表格和内容:

DROP TABLE IF EXISTS `userprofile_userprofile`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `userprofile_userprofile` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`firebaseUID` varchar(100) NOT NULL,
`user_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `user_id` (`user_id`),
CONSTRAINT `userprofile_userprofile_user_id_59dda034_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `userprofile_userprofile`
--

LOCK TABLES `userprofile_userprofile` WRITE;
/*!40000 ALTER TABLE `userprofile_userprofile` DISABLE KEYS */;
INSERT INTO `userprofile_userprofile` VALUES (1,'bdbe350a-9c96-4cc0-94f1-5406a9aaa3e7',17),(2,'4929e406-9d75-43e2-afa4-fe641f3e85f5',18);
/*!40000 ALTER TABLE `userprofile_userprofile` ENABLE KEYS */;
UNLOCK TABLES;

最佳答案

您需要将字符串单引号 ('') 放在反引号 (``) 中,如下所示:

SELECT * FROM `userprofile_userprofile` 
WHERE `userprofile_userprofile`.`firebaseUID` = '4929e406-9d75-43e2-afa4-fe641f3e85f5'

关于MySQL 字符串比较查询给出意外的双列或未知列错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36694234/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com