how to delete duplicate rows from a specified table(only
single table)
how do you know which join is need to be used
Answer Posted / kishor solanki @ 9904762204
CREATE TABLE new_table as SELECT * FROM test GROUP BY url;
DROP TABLE test;
RENAME TABLE new_table TO test;
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is function and procedure in pl sql?
how to include comments in sql statements? : Sql dba
What is a sql statement?
What is sqlcommand?
What is procedure and function?
Is inner join faster than left join?
What is using in sql?
How much does sql cost?
Can a table have no primary key?
Is primary key is clustered index?
Which is faster truncate or drop?
Inline the values in PL/SQL, what does it mean.?
What is the difference between cluster and non-cluster index?
how to create a new table by selecting rows from another table in mysql? : Sql dba
how to drop an existing view in mysql? : Sql dba