It depends on the way you're storing the data. If you have a class with all of your values in the object of it, then you can use a code like this to do so:
DatabaseReference ref = FirebaseDatabase.getInstance().getReference().child("userTable");
// where User is your class and user is it's object with the values you need to update
ref.child(user.getNumber()).setValue(user);
If you don't have a class like that and you need to set those values, then you'd have to do it individually to every node of your database, with a code like this:
DatabaseReference refNew = FirebaseDatabase.getInstance().getReference().child("userTable").child(i);
// where i is the variable which you have to keep count of your users
ref.child("Age").setValue(age);
ref.child("Company").setValue(company); // and so on
// age, company are variable with values you want to store