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 many rows can sqlite handle?
How do I run a pl sql program?
Why do we use sql constraints? Which constraints we can use while creating database in sql?
Can we update views in sql?
What is meant by user defined function?
What is difference between nchar and nvarchar?
In pl/sql, what is bulk binding, and when/how would it help performance?
What is sql indexing?
What is user in sql?
What is an escape character in sql?
What are the different types of functions in sql?
Who is the owner of mysql database?
What is a pl/sql block?
Name three sql operations that perform a sort.
Can we insert in view in sql?