79224440

Date: 2024-11-25 19:58:38
Score: 1.5
Natty:
Report link

Why not copying the data without dump?

# drop new table if exists
drop table if exists users_new;

# create new table as clone
create table users_new like users;

# copy data
insert into users_new select * from users;
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): Why not
  • High reputation (-1):
Posted by: Wiimm