select username
from #variables.tableprefix#users
where username =
insert into #variables.tableprefix#users(username,password)
values(,
)
select username
from #variables.tableprefix#users
where username =
and password =
delete from #variables.tableprefix#users
where username =
select username, password
from #variables.tableprefix#users
where username =
select username, password
from #variables.tableprefix#users
order by username asc
update #variables.tableprefix#users
set password =
where username =
select username
from #variables.tableprefix#users
where username =
update #variables.tableprefix#users
set username =
,password =
where username =