0% found this document useful (0 votes)
35 views1 page

ASM

The first query counts and groups the number of connections by circle from the AGRICULTURE_CONN table where the connection ID starts with "AGTMOB" and the date is on or after April 1st, 2016. The second query selects all columns from the AGRICULTURE_CONN table where the connection ID contains "MOB".
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
35 views1 page

ASM

The first query counts and groups the number of connections by circle from the AGRICULTURE_CONN table where the connection ID starts with "AGTMOB" and the date is on or after April 1st, 2016. The second query selects all columns from the AGRICULTURE_CONN table where the connection ID contains "MOB".
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

select count(*),circle from AGRICULTURE_CONN where CONNID like('AGTMOB%') and D

ATEENTRY>='01-APR-16' GROUP by CIRCLE;


select * from AGRICULTURE_CONN where CONNID like('%MOB%');

You might also like