Responses |
|
TRUNCATE TABLE student is correct statement , as syntax of TRUNCATE is
TRUNCATE TALBE tablename
|
|
TRUNCATE Table command is used to delete complete data from the existing table.
TRUNCATE TABLE table_name
TRUNCATE TABLE Customers;
customers table is truncated, do the SELECT statement to see the result set. is EMPTY or not.
|
|
TRUNCATE Table command is used to delete complete data from the existing table.
TRUNCATE TABLE table_name
TRUNCATE TABLE Customers;
customers table is truncated, do the SELECT statement to see the result set. is EMPTY or not.
|