📄 createlearningiteminfo.sql
字号:
################################################################################## Project : Online Game DARKEDEN# Module : SQL - Item Info## FileName : CreateLearningItemInfo.sql# Description : ## History Writer Description# ------------ -------------- -----------------------------------------------# 2002.08.13 厘全芒 脚痹 颇老 积己 ################################################################################################################################################################## 抛捞喉 积己 DROP TABLE IF EXISTS LearningItemInfo;CREATE TABLE LearningItemInfo ( ItemType tinyint(3) unsigned NOT NULL default '0', Name varchar(30) NOT NULL default '', EName varchar(30) NOT NULL default '', Price int(10) unsigned NOT NULL default '0', Volume tinyint(3) unsigned NOT NULL default '0', Weight tinyint(3) unsigned NOT NULL default '0', Ratio int(11) NOT NULL default '0', SkillType smallint(5) unsigned NOT NULL default '0', PRIMARY KEY (ItemType)) TYPE=MyISAM;################################################################################# 牢郸胶 积己################################################################################# Sequence 积己################################################################################# 鼻茄 汲沥 ################################################################################# 单捞磐 持扁INSERT INTO LearningItemInfo VALUES (0,'卷轴','Scroll',0,1,1,0,1);INSERT INTO LearningItemInfo VALUES (1,'磁盘','Diskette',0,1,1,0,1);INSERT INTO LearningItemInfo VALUES (2,'压缩磁盘','Zip Diskette',0,1,1,0,1);INSERT INTO LearningItemInfo VALUES (3,'CD','CD',0,1,1,0,1);INSERT INTO LearningItemInfo VALUES (4,'竹简','Bamboo Piece',0,2,1,0,1);INSERT INTO LearningItemInfo VALUES (5,'东洋经','Oriental Book',0,5,2,0,1);INSERT INTO LearningItemInfo VALUES (6,'圣经','Bible',0,5,3,0,1);INSERT INTO LearningItemInfo VALUES (7,'上古卷轴','Ancient Book',0,5,2,0,1);INSERT INTO LearningItemInfo VALUES (8,'文件','File',0,5,1,0,1);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -