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 does sql stand for?
why does the selected column have to be in the group by clause or part of an aggregate function? : Sql dba
Do we need to create index on primary key?
What is a temporal data type?
What does inner join mean?
What are different joins used in sql?
How to order siblings in oracle hierarchy queries?
What is an index? What are the types of indexes? How many clustered indexes can be created on a table?
Why is nosql good?
How do we accept inputs from user during runtime?
Can sql developer connect to db2?
How many types of index are there?
how can we submit a form without a submit button? : Sql dba
What is the purpose of the primary key?
What is the unique index?