example
example

已解决√ 求助 奎因猫咖这个应该这么解决

慵懒LY

用户
认证用户
黄金
50.00G
奎因猫咖这个问题应该这么解决
1:数据库导入不进去
2:背包里面有物品但是去洗和制作就提示没有这些东西 偶尔又能洗和制作
 

附件

  • C7F96234F511D6B09301E67F5BB53A27.png
    C7F96234F511D6B09301E67F5BB53A27.png
    500.5 KB · 查看: 23
  • 3ED15CC7492E28A9602A203788499591.png
    3ED15CC7492E28A9602A203788499591.png
    10.5 KB · 查看: 20
语法写错了,可以把你的sql语句发出来让别人帮你看看哪里写错了
 
语法写错了,可以把你的sql语句发出来让别人帮你看看哪里写错了
INSERT INTO `addon_account` (name, label, shared) VALUES
('society_coffe', 'Coffe', 1)
;
INSERT INTO `datastore` (name, label, shared) VALUES
('society_coffe', 'Coffe', 1)
;
INSERT INTO `addon_inventory` (name, label, shared) VALUES
('society_coffe', 'Coffe', 1)
;
INSERT INTO `jobs` (name, label) VALUES
('coffe', 'Coffe')
;
INSERT INTO `job_grades` (job_name, grade, name, label, salary, skin_male, skin_female) VALUES
('coffe', 0,'recruit','正式员工',0,'{}','{}'),
('coffe', 1,'employee','经理',0,'{}','{}'),
('coffe', 2,'manager','店长',0,'{}','{}'),
('coffe', 3,'boss','老板',5,'{}','{}'),
;
 
INSERT INTO `addon_account` (`name`, `label`, `shared`) VALUES
('society_coffe', 'Coffe', 1);

INSERT INTO `datastore` (`name`, `label`, `shared`) VALUES
('society_coffe', 'Coffe', 1);

INSERT INTO `addon_inventory` (`name`, `label`, `shared`) VALUES
('society_coffe', 'Coffe', 1);

INSERT INTO `jobs` (`name`, `label`) VALUES
('coffe', 'Coffe');

INSERT INTO `job_grades` (`job_name`, `grade`, `name`, `label`, `salary`, `skin_male`, `skin_female`) VALUES
('coffe', 0, 'recruit', '正式员工', 0, '{}', '{}'),
('coffe', 1, 'employee', '经理', 0, '{}', '{}'),
('coffe', 2, 'manager', '店长', 0, '{}', '{}'),
('coffe', 3, 'boss', '老板', 5, '{}', '{}');
 
后退
顶部