Skip to content
Snippets Groups Projects
Commit ffea0431 authored by Glenn Proctor's avatar Glenn Proctor
Browse files

Simplified query

parent 874086c3
No related branches found
No related tags found
No related merge requests found
#!/bin/sh
mysql -u ensro -h ecs3 -P 3307 -e 'select week_beginning,hits,size,pi from summary where YEAR(week_beginning) >= 2003 AND vhost_id = 3 ORDER BY week_beginning' ensembl_summary_stats
mysql -u ensro -h ecs3 -P 3307 -e 'SELECT week_beginning,hits,size,pi FROM summary WHERE YEAR(week_beginning) >= 2003 AND vhost_id = 3 ORDER BY week_beginning' ensembl_summary_stats
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment