2015年6月9日

摘要: sqlite> create table t_user(userid int,username varchar(20));sqlite> insert into t_user values(1,'u1');sqlite> insert into t_user values(2,'u2');sqlit... 阅读全文
posted @ 2015-06-09 15:19 decwang 阅读(216) 评论(0) 推荐(0) 编辑
 
摘要: //用户表,用户ID,用户名称create table t_user (user_id int,username varchar(20));//用户帐户表,用户ID,用户余额(单位分)create table t_account(user_id int,account_balance int);in... 阅读全文
posted @ 2015-06-09 15:00 decwang 阅读(216) 评论(0) 推荐(0) 编辑