gpt4 book ai didi

php - #1064 - 你的 SQL 语法有错误 :help needed

转载 作者:行者123 更新时间:2023-11-30 22:42:25 25 4
gpt4 key购买 nike

我想在 phpmyadmin 上创建 mysql 数据库和表。

代码如下:

create database android_api /** Creating Database **/

use android_api /** Selecting Database **/

create table users(
   uid int(11) primary key auto_increment,
   unique_id varchar(23) not null unique,
   name varchar(50) not null,
   email varchar(100) not null unique,
   encrypted_password varchar(80) not null,
   salt varchar(10) not null,
   created_at datetime,
   updated_at datetime null
); /** Creating Users Table **/

但是遇到错误

#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 'Â use android_api /** Selecting Database **/ Â create table users( Â Â ' at line 2

这里有什么问题,任何帮助。

最佳答案

错误是由于注释引起的。尝试 -

create database android_api;
use android_api;
create table users(
uid int(11) primary key auto_increment,
unique_id varchar(23) not null unique,
name varchar(50) not null,
email varchar(100) not null unique,
encrypted_password varchar(80) not null,
salt varchar(10) not null,
created_at datetime,
updated_at datetime null
);

如果你想要评论 -

create database android_api; # Creating Database

会起作用。

关于php - #1064 - 你的 SQL 语法有错误 :help needed,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30753244/

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