Филтрирање на граѓани
Актери
- Најавен началник
- Најавен полицаец
Чекор 1
Со посета на почетната страна имаме приказ на контролната табла од левата страна.
Чекор 2
Со кликање на филтрирај граѓани се појавуваат сите граѓани во базата.
select embg,first_name,last_name,gender,address,country,nationality,contact from people
Чекор 3
Доколку началникот сака да ги филтрира граѓаните по возраст.
select embg,first_name,last_name,gender,address,country,nationality,contact from people where extract(year from age(current_date, date_of_birth)) between 19 and 25 and extract(year from age(current_date, date_of_birth)) between 26 and 60
Чекор 4
Доколку началникот сака да ги филтрира граѓаните и по пол.
select embg,first_name,last_name,gender,address,country,nationality,contact from people where extract(year from age(current_date, date_of_birth)) between 19 and 25 and extract(year from age(current_date, date_of_birth)) between 26 and 60 and gender ~ ‘(Z|Ж)’
Чекор 5
Доколку началникот сака да ги пребарува граѓаните по матичен број.
select embg,first_name,last_name,gender,address,country,nationality,contact from people where embg like ‘101101470303’
Last modified
10 months ago
Last modified on 01/15/24 12:55:14
Attachments (5)
- filtriranje1.png (65.5 KB ) - added by 10 months ago.
- filtriranje2.png (148.8 KB ) - added by 10 months ago.
- filtriranje3.png (149.1 KB ) - added by 10 months ago.
- filtriranje4.png (148.6 KB ) - added by 10 months ago.
- filtriranje5.png (139.9 KB ) - added by 10 months ago.
Download all attachments as: .zip
Note:
See TracWiki
for help on using the wiki.