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
How do I run a sql script?
Why select is used in sql?
what is 'trigger' in sql? : Sql dba
What is microsoft t sql?
Why do we need view in sql?
How do you optimize a stored procedure in sql?
which types of join is used in sql widely? : Sql dba
What are the two different parts of the pl/sql packages?
What is indexing oracle sql?
How can we connect an Android App to an Oracle database and use the PL/SQL procedural code?
Why we use sql profiler?
what is a table called, if it has neither cluster nor non-cluster index? What is it used for? : Sql dba
Why do we go for stored procedures?
How to combine two stored procedures in sql?
Can variables be used in sql statements?