Closed. This question is off-topic。它当前不接受答案。
想改善这个问题吗? Update the question,因此它是on-topic,用于堆栈溢出。
5年前关闭。
更新
我试过只是运行这个
我收到错误#1064-您的SQL语法有错误;检查与您的MySQL服务器版本相对应的手册以获取正确的语法,以在``stickynotes''附近使用。
当我尝试运行下面的sql查询时,出现错误#1064-您的SQL语法有错误;检查与您的MySQL服务器版本相对应的手册以获取正确的语法,以在第1行的“ stickynotes”。'stickynotes”附近使用
查询出了什么问题?
想改善这个问题吗? Update the question,因此它是on-topic,用于堆栈溢出。
5年前关闭。
更新
我试过只是运行这个
CREATE TABLE IF NOT EXISTS 'stickynotes'.'stickynotes' ('id' INT NOT NULL AUTO_INCREMENT ,
'note' VARCHAR(255) NULL ,
'created' TIMESTAMP NOT NULL ,
PRIMARY KEY ('id') ,
UNIQUE INDEX 'id_UNIQUE' ('id' ASC) )
ENGINE = MyISAM;
我收到错误#1064-您的SQL语法有错误;检查与您的MySQL服务器版本相对应的手册以获取正确的语法,以在``stickynotes''附近使用。
当我尝试运行下面的sql查询时,出现错误#1064-您的SQL语法有错误;检查与您的MySQL服务器版本相对应的手册以获取正确的语法,以在第1行的“ stickynotes”。'stickynotes”附近使用
查询出了什么问题?
DROP TABLE IF EXISTS `stickynotes`.`stickynotes` ;
CREATE TABLE IF NOT EXISTS `stickynotes`.`stickynotes` (
`id` INT NOT NULL AUTO_INCREMENT ,
`note` VARCHAR(255) NULL ,
`created` TIMESTAMP NOT NULL ,
PRIMARY KEY (`id`) ,
UNIQUE INDEX `id_UNIQUE` (`id` ASC) )
ENGINE = MyISAM;
-- -----------------------------------------------------
-- Data for table `stickynotes`.`stickynotes`
-- -----------------------------------------------------
START TRANSACTION;
USE `stickynotes`;
INSERT INTO `stickynotes`.`stickynotes` (`id`, `note`, `created`) VALUES (NULL, 'This is a sticky note you can type and edit.', NULL);
INSERT INTO `stickynotes`.`stickynotes` (`id`, `note`, `created`) VALUES (NULL, 'Let's see if it will work with my iPhone', NULL);
COMMIT;
最佳答案
问题在这里:
插入stickynotes
。stickynotes
(id
,note
,created
)
值(NULL,“让我们看看它是否可以与我的iPhone配合使用”,NULL);
尝试:
插入stickynotes
。stickynotes
(id
,note
,created
)
值(NULL,“让我们看看它是否可以与我的iPhone一起使用”,NULL);
错误在这里:让我们看看它是否可以在我的iPhone上使用
10-08 16:18