how to update all rows of an table with $wpdb?
I tried this, but won’t work:
$wpdb->update( 'wp_comments, array( 'comment_karma' => '123' ), null );
and this
$wpdb->update( 'wp_comments, array( 'comment_karma' => '123' ), array() );
So how to do this?
Thanks in advance!