I have table called "emp_manager" in employees database in SQL. It has 300153 rows. I want to delete entire table in SQL. I used drop table emp_manager; but, it is taking time and server does not respond it.
Can anyone help me to delete this table ?
I have table called "emp_manager" in employees database in SQL. It has 300153 rows. I want to delete entire table in SQL. I used drop table emp_manager; but, it is taking time and server does not respond it.
Can anyone help me to delete this table ?
 
    
    You can use truncate table emp_manager
 
    
    Maybe first delete the rows from that table by using Truncate command and then drop this empty table with drop table.
