here example INSERT INTO table_name( user_id, user_balance) VALUES( 1, 500)
but in my case I need insert 1000 'user_id' from 1-1000 with same 'user_balace' for all user(500), how make function instead calling 1000 times one code
here example INSERT INTO table_name( user_id, user_balance) VALUES( 1, 500)
but in my case I need insert 1000 'user_id' from 1-1000 with same 'user_balace' for all user(500), how make function instead calling 1000 times one code