select user_id, user_name, user_editcount As EditCount
from user
Where... |
3 years ago |
select user_id, lower(Convert(user_name using utf8)) AS Abs, user_editcount... |
3 years ago |
select user_id, lower(Convert(user_name using utf8)) AS Abs from user where... |
3 years ago |
select user_id, lower(Convert(user_name using utf8)) AS Abs from user where... |
3 years ago |
select user_id, lower(Convert(user_name using utf8)) AS a from user where a... |
3 years ago |
select user_id, lower(Convert(user_name using utf8)) AS a from user where... |
3 years ago |
select user_id, Convert(user_name using utf8) AS a from user where... |
3 years ago |
select user_id, Convert(user_name,varchar) AS a from user where... |
3 years ago |
select user_id, Convert(VARCHAR,user_name,0) AS a from user where... |
3 years ago |
select user_id, Convert(VARCHAR(255),user_name) AS a from user where... |
3 years ago |
select user_id, Convert(VARCHAR,user_name) AS a from user where... |
3 years ago |
select user_id, Convert(VARCHAR,255,user_name) AS a from user where... |
3 years ago |
select user_id, CAST(user_name as VARCHAR) AS a from user where... |
3 years ago |
select user_id, cast(user_name as VARCHAR) AS a from user where... |
3 years ago |
select user_id, cast(user_name as VARCHAR) from user where lcase(user_name)... |
3 years ago |
select user_id, cast(user_name as varchar) from user where lcase(user_name)... |
3 years ago |
select user_id, cast(user_name as varchar) from user where lcase(user_name)... |
3 years ago |
select user_id, lcase( cast(user_name as varchar(255)) from user where... |
3 years ago |
select user_id, lcase(cast(varchar(255),(user_name))) from user where... |
3 years ago |
select user_id, lcase(cast(varchar,(user_name))) from user where... |
3 years ago |
select user_id, lcase(user_name) from user where lcase(user_name) like ('%bot') |
3 years ago |
select user_id, lower(user_name) from user where lcase(user_name) like ('%bot') |
3 years ago |
select user_id, lower(user_name) from user where lower(user_name) like ('%bot') |
3 years ago |
select user_id from user where lower(user_name) like ('%bot') |
3 years ago |
select user_id from user where user_name like (('%BOT') OR ('%bot')) |
3 years ago |
select user_id from user where user_name like ('%BOT') OR ('%bot') |
3 years ago |
select user_id from user where user_name like ('%BOT') |
3 years ago |
select user_id from user where user_name like ('%bot') |
3 years ago |
select user_id from user where user_name like ('%Bot') |
3 years ago |
select user_id from user where user_name like ('%Bot' OR '%bot') |
3 years ago |
select user_id from user where user_name like '%[Bb][Oo][Tt]' |
3 years ago |
select user_id from user where user_name like '%[Bb]ot' |
3 years ago |
select distinct(ug_user) from user_groups where ug_group like '%bot%' |
3 years ago |
select distinct(ug_user) from user_groups where ug_group like '%bot%') |
3 years ago |