@@ -143,9 +143,9 @@ def get_channel_overview(channel,pitcher,start,end,page,page_size,order_by,order
if channel!='':
sql+=f" and channel='{channel}'"
if start!='':
- sql+=f" and start>='{start}'"
+ sql+=f" and dt>='{start}'"
if end!='':
- sql+=f" and end<='{end}'"
+ sql+=f" and dt<='{end}'"
if pitcher!='':
sql+=f" and pitcher='{pitcher}'"
total = ck.execute(f"select count(1) from ({sql}) a")[0][0]