📄 createpkzoneinfo.sql
字号:
################################################################################## Project : Online Game DARKEDEN# Module : SQL - Game Info## FileName : CreatePKZoneInfo.sql# Description : ## History Writer Description# ------------ -------------- -----------------------------------------------################################################################################################################################################################## 抛捞喉 积己 DROP TABLE IF EXISTS PKZoneInfo;CREATE TABLE PKZoneInfo ( ID smallint(5) unsigned not null default 0, ZoneID smallint(5) unsigned not null default 0, Race tinyint(2) unsigned not null default 0, EnterX int(10) unsigned not null default 0, EnterY int(10) unsigned not null default 0, ResurrectX int(10) unsigned not null default 0, ResurrectY int(10) unsigned not null default 0, PCLimit int(10) unsigned not null default 0, PRIMARY KEY(ID)) type=MyISAM;################################################################################# 牢郸胶 积己CREATE INDEX PKZoneInfo_ZoneID ON PKZoneInfo(ZoneID);################################################################################# Sequence 积己################################################################################# 鼻茄 汲沥 ################################################################################# 单捞磐 持扁INSERT INTO PKZoneInfo VALUES (0, 1301, 0, 32, 35, 9, 56, 50);INSERT INTO PKZoneInfo VALUES (1, 1302, 1, 32, 35, 9, 56, 50);INSERT INTO PKZoneInfo VALUES (2, 1303, 2, 46, 49,13, 78, 100);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -