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

Correct extension

parent 97686cbe
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/sh
mysql -u ensro -h ecs3 -P 3307 -e 'select week_beginning,hits,size,pi from summary where (YEAR(week_beginning) = 2007 OR YEAR(week_beginning) = 2006 OR YEAR(week_beginning) = 2003 OR YEAR(week_beginning) = 2004 OR YEAR(week_beginning) = 2005) and vhost_id = 3 order by week_beginning' ensembl_summary_stats
#!/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
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