mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
[ticket/12712] Remove unneeded GROUP BY clause to fix query for mssql
PHPBB3-12712
This commit is contained in:
parent
3a96c5b753
commit
2ca9e25bf2
1 changed files with 0 additions and 1 deletions
|
@ -42,7 +42,6 @@ class passwords_convert_p1 extends \phpbb\db\migration\migration
|
||||||
$sql = 'SELECT user_password, user_id
|
$sql = 'SELECT user_password, user_id
|
||||||
FROM ' . $this->table_prefix . 'users
|
FROM ' . $this->table_prefix . 'users
|
||||||
WHERE user_pass_convert = 1
|
WHERE user_pass_convert = 1
|
||||||
GROUP BY user_id
|
|
||||||
ORDER BY user_id';
|
ORDER BY user_id';
|
||||||
$result = $this->db->sql_query_limit($sql, $limit, $start);
|
$result = $this->db->sql_query_limit($sql, $limit, $start);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue