select user_name from user where lower(user_name) like "st47"; |
5 years ago |
select user_name from user where user_name like "st47"; |
5 years ago |
select user_name from user where user_name like "ST47"; |
5 years ago |
select user_name from user where user_name = "ST47"; |
5 years ago |
select user_name from user where user_name == "ST47"; |
5 years ago |
select user_name from user where lower(user_name) like "st47"; |
5 years ago |
select user_name from user where lower(user_name) like "%brechero%"; |
5 years ago |
select user_name from user where user_name like "%brechero%"; |
5 years ago |
select user_name from user where user_name ilike "%Brechero%"; |
5 years ago |
select user_name from user where user_name icontains "Brechero"; |
5 years ago |