- or download this
WHERE year = '2002',
AND month = '3',
...
AND time_start = '1:00 PM',
AND time_end = '12:00 PM',
AND title = 'Faciltiative Leadership Training',
- or download this
WHERE
year = '2002'
...
time_end = '12:00 PM'
AND
title = 'Faciltiative Leadership Training'
- or download this
if (year == '2002' && month == '3' && day = '16'
&& $time_start eq '1:00 PM' && $time_end eq '12:00 PM'
&& $title eq 'Faciltiative Leadership Training') {
#yada-yada-yada
}
- or download this
if (year == '2002', && month == '3', && day = '16',
&& $time_start eq '1:00 PM', && $time_end eq '12:00 PM',
&& $title eq 'Faciltiative Leadership Training') {
#yada-yada-yada
}