免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 7567 | 回复: 2
打印 上一主题 下一主题

请教下在mysql下怎样设计一个股票数据数据库 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-04-24 21:26 |只看该作者 |倒序浏览
玩股票的时候发现一个问题,就是股票的只数太他妈多了!要用眼睛去一个个检索,根本忙不过来!
   咱好歹也是个程序员,想想可以把数据导入代码,让电脑根据我设定的各种条件来帮我显示我需要的股票!
   证券公司的股票软件可以导出txt格式的数据文件,但我发现如果直接用这些txt文件的话,混乱而又难以管理,而且每次要分析的时候都要去导入一遍这些文件效率很低!于是我想可否用数据库来保存我的这些数据!
   上周末和这周末,我下了个mysql玩了一下,了解了一些database和table的概念,还有大致怎样用select检索table!
    但我从manual中看到的table都是2维的,比如像我下面建立的这张stock表,这样如果我要记录从比如3年的数据,岂不是要上千张表了?

有没有办法建立一个三维类似的表,比如二维上我只包含code,name,businesstype,time信息,但另外我又能以time维为轴,为表中每个成员的time项再建立一个包含price_close  price_open price_high price_low成员的表?
      

mysql> describe stock;
+--------------+-------------+------+-----+---------+-------+
| Field        | Type        | Null | Key | Default | Extra |
+--------------+-------------+------+-----+---------+-------+
| code         | int(11)     | YES  |     | NULL    |       |
| name         | varchar(20) | YES  |     | NULL    |       |
| price_close  | float       | YES  |     | NULL    |       |
| price_open   | float       | YES  |     | NULL    |       |
| price_high   | float       | YES  |     | NULL    |       |
| price_low    | float       | YES  |     | NULL    |       |
| businesstype | varchar(40) | YES  |     | NULL    |       |
| time         | date        | YES  |     | NULL    |       |
+--------------+-------------+------+-----+---------+-------+
8 rows in set (1.23 sec)

mysql> select * from stock;
+--------+----------+-------------+------------+------------+-----------+--------------+------------+
| code   | name     | price_close | price_open | price_high | price_low | businesstype | time       |
+--------+----------+-------------+------------+------------+-----------+--------------+------------+
| 600019 | 宝钢股份 |        7.32 |       7.37 |       7.42 |      7.28 | 钢铁行业     | 2011-04-22 |
| 600010 | 包钢股份 |       7.901 |       8.36 |       8.36 |      7.82 | 钢铁行业     | 2011-04-22 |
+--------+----------+-------------+------------+------------+-----------+--------------+------------+
2 rows in set (0.00 sec)

论坛徽章:
27
CU大牛徽章
日期:2013-03-13 15:15:08CU大牛徽章
日期:2013-05-20 10:46:38CU大牛徽章
日期:2013-05-20 10:46:44CU大牛徽章
日期:2013-09-18 15:24:09CU大牛徽章
日期:2013-09-18 15:24:20CU大牛徽章
日期:2013-09-18 15:24:25CU大牛徽章
日期:2013-09-18 15:24:31CU大牛徽章
日期:2013-09-18 15:24:36CU大牛徽章
日期:2013-09-18 15:24:41CU大牛徽章
日期:2013-09-18 15:24:48CU大牛徽章
日期:2013-09-18 15:24:52处女座
日期:2013-09-27 17:45:43
2 [报告]
发表于 2011-04-30 19:08 |只看该作者
建立两张表即可,一张保存股票公司信息,一张是每天的信息表,中间用code_id做外键

  1. drop table if exists stock_code;

  2. drop table if exists stock_day;

  3. /*==============================================================*/
  4. /* Table: stock_code                                            */
  5. /*==============================================================*/
  6. create table stock_code
  7. (
  8.    code                 int not null auto_increment,
  9.    name                 varchar(20) not null,
  10.    businesstype         varchar(40) not null,
  11.    primary key (code)
  12. )
  13. comment = "股票公司信息表"
  14. type = InnoDB;

  15. /*==============================================================*/
  16. /* Table: stock_day                                             */
  17. /*==============================================================*/
  18. create table stock_day
  19. (
  20.    id                   int not null auto_increment,
  21.    code_id              int not null,
  22.    price_close          float not null,
  23.    price_open           float not null,
  24.    price_high           float not null,
  25.    price_low            float not null,
  26.    time                 timestamp not null
  27. )
  28. comment = "股票每天表"
  29. type = InnoDB;

  30. alter table stock_day add constraint FK_Reference_1 foreign key (code_id)
  31.       references stock_code (code) on delete restrict on update restrict;

复制代码

论坛徽章:
0
3 [报告]
发表于 2011-05-04 22:15 |只看该作者
回复 3# yifangyou


啊!谢谢啊!这世界还是好人多啊!
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP