gpt4 book ai didi

sql:为注入(inject)制作表结构

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

我想从 this site 中获取值对于我的数据库中的国家/地区表。

问题是他们不提供表结构,所以我必须创建一个,但我无法正确处理 - 当我想将数据注入(inject)到下面创建的表中时,我的 phpMyAdmin 不断显示错误:

#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NUMERIC, alpha3, name, officialName) VALUES ('004','AFG','Afghanistan','Afghan' at line 1

--
-- Table structure for table `countrytable`
--

CREATE TABLE IF NOT EXISTS `countrytable` (
`NUMERIC` int(11) NOT NULL,
`alpha3` int(11) NOT NULL,
`name` varchar(255) DEFAULT NULL,
`officialName` varchar(255) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

我认为我的表结构不正确。我该如何修复它?谢谢!

最佳答案

尝试所有 varchar 字段来获取数据,因为所有字段都在您拥有的字符串中的引号中。

关于sql:为注入(inject)制作表结构,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4146053/

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