This sounds like a simple one, but I can't get it to work.
I'm trying to figure out how to modify a table with repeating rows, so there are none.
I tried to create a SQL Query that looks like this
SELECT DISTINCTROW *
FROM Table;
The resulting has no apparent filter effect on the table. I'm not to familiar with the distinctrow command, I suppose.
Here's some sample data:
Col1 Col2 Col3
1 1 1
1 1 1
1 1 2
1 1 2
1 2 1
2 1 1
2 1 2
2 1 2
Desired results:
1 1 1
1 1 2
1 2 1
2 1 1
2 1 2
I'm trying to figure out how to modify a table with repeating rows, so there are none.
I tried to create a SQL Query that looks like this
SELECT DISTINCTROW *
FROM Table;
The resulting has no apparent filter effect on the table. I'm not to familiar with the distinctrow command, I suppose.
Here's some sample data:
Col1 Col2 Col3
1 1 1
1 1 1
1 1 2
1 1 2
1 2 1
2 1 1
2 1 2
2 1 2
Desired results:
1 1 1
1 1 2
1 2 1
2 1 1
2 1 2