|
楼主 |
发表于 2008-6-4 20:28:24
|
显示全部楼层
附创表SQL语句(只适合MySQL)
- CREATE TABLE `game_log_result2` (
- `ID` int(11) NOT NULL auto_increment COMMENT '编号',
- `nItem` int(11) default NULL COMMENT '房间号',
- `nDesk` int(11) default NULL COMMENT '桌号',
- `nUin0` int(11) default '0' COMMENT '玩家',
- `nUin1` int(11) default '0',
- `nResult0` int(11) default '0' COMMENT '得积分',
- `nResult1` int(11) default '0',
- `nMoney0` int(11) default '0' COMMENT '得财富',
- `nMoney1` int(11) default '0',
- `dTime` datetime default NULL COMMENT '时间',
- PRIMARY KEY (`ID`)
- )
复制代码- CREATE TABLE `game_log_result3` (
- `ID` int(11) NOT NULL auto_increment COMMENT '编号',
- `nItem` int(11) default NULL COMMENT '房间号',
- `nDesk` int(11) default NULL COMMENT '桌号',
- `nUin0` int(11) default '0' COMMENT '玩家',
- `nUin1` int(11) default '0',
- `nUin2` int(11) default '0',
- `nResult0` int(11) default '0' COMMENT '得积分',
- `nResult1` int(11) default '0',
- `nResult2` int(11) default '0',
- `nMoney0` int(11) default '0' COMMENT '得财富',
- `nMoney1` int(11) default '0',
- `nMoney2` int(11) default '0',
- `dTime` datetime default NULL COMMENT '时间',
- PRIMARY KEY (`ID`)
- )
复制代码- CREATE TABLE `game_log_result4` (
- `ID` int(11) NOT NULL auto_increment COMMENT '编号',
- `nItem` int(11) default NULL COMMENT '房间号',
- `nDesk` int(11) default NULL COMMENT '桌号',
- `nUin0` int(11) default '0' COMMENT '玩家',
- `nUin1` int(11) default '0',
- `nUin2` int(11) default '0',
- `nUin3` int(11) default '0',
- `nResult0` int(11) default '0' COMMENT '得积分',
- `nResult1` int(11) default '0',
- `nResult2` int(11) default '0',
- `nResult3` int(11) default '0',
- `nMoney0` int(11) default '0' COMMENT '得财富',
- `nMoney1` int(11) default '0',
- `nMoney2` int(11) default '0',
- `nMoney3` int(11) default '0',
- `dTime` datetime default NULL COMMENT '时间',
- PRIMARY KEY (`ID`)
- )
复制代码-
- CREATE TABLE `game_log_money` (
- `ID` int(11) NOT NULL auto_increment COMMENT '编号',
- `uin` int(11) default NULL COMMENT '玩家号',
- `nItem` int(11) default NULL COMMENT '房间号',
- `nMoney` int(11) default NULL COMMENT '泡点得到的财富',
- `dTime` datetime default NULL COMMENT '时间',
- PRIMARY KEY (`ID`)
- )
复制代码 |
|