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
Is sql the best database?
Why left join is used in sql?
Explain what is a database?
What is difference between sql function and stored procedure?
If i can use sys.check_constraints to display my constraints from my database using sql server 2005, how can i display then if i am using sql server 2000????
What is sql data?
Do we need to create index on primary key?
what is oracle database ? : Sql dba
How do you identify a primary key?
Does a primary key have to be a number?
What is difference between ms sql and mysql?
How is use pl and sql?
How to use sql statements in pl/sql?
What does 0 mean in sql?
Can we join 3 tables in sql?