View Single Post
  #4  
Old 09-06-2010, 01:14 PM
GeorgeS
Forum Guide
 
Join Date: Sep 2003
Location: California
Posts: 1,474
Default

Actually it is better to start by running this query

Code:
select * from items  where source <>  '13THFLOOR' order by created desc
That will sort the items by creation date descending order and those originally made by PEQ.
..then you run subqueries by filtering stuff out


My tools create a "CUSTOM" tag, so running this will pull out those items made with my editor by creation date
Code:
select * from items  where source =  'CUSTOM' order by created desc

GeorgeS
__________________
Your source for EQ database tools
Toolshop is open for business


http://www.georgestools.chrsschb.com//
Reply With Quote