多用户创建mysql
我和一些朋友很久以前创造了一个forim。我们有一些用户并列出了他们的用户名列表但不幸的是我们的网站被劫持并失去了对数据库的访问权限。我想知道的问题是,是否存在phpmyadmin上的命令可能会从列表中同时创建多个用户。
到目前为止我的步骤: 创建用户'jeffrey'@'localhost'通过'mypass'识别;
答案 0 :(得分:0)
All you have to do is :-
Insert into mybb_users SET username='some_username', email='email_of_person' , password = '098f6bcd4621d373cade4e832627b4f6', salt = '';
You can also fill other column of user table of your choice.