You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to MapInfo-L
Hi all,
I need select duplicates in table - there is column with numbers example - 354, 355, 356, 356, 357, 358, 358... and i want select the same numbers 356, 356, 358, 358... i dont know how to do...
Can someone help me pls?
Thanks
Ross Nixon
unread,
Jun 23, 2016, 4:59:44 AM6/23/16
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to MapInfo-L
An SQL query similar to the following will identify duplicates. It tells you how many instances of each value there are in the column. Select ColumnName, Count(*) from TableName group by ColumnName order by count desc into Dup_Count_qry
Ross
ktgcad
unread,
Jun 23, 2016, 8:23:23 AM6/23/16
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to mapi...@googlegroups.com
Select * column name "no"
Will list all of them
-------- Original message -------- From: mapi...@googlegroups.com Date:2016/06/23 12:02 (GMT+05:30) To: MapInfo-L Subject: [MI-L] Select duplicate values in table
Hi all,
I need select duplicates in table - there is column with numbers example - 354, 355, 356, 356, 357, 358, 358... and i want select the same numbers 356, 356, 358, 358... i dont know how to do...
---
You received this message because you are subscribed to the Google Groups "MapInfo-L" group.
To unsubscribe from this group and stop receiving emails from it, send an email to mapinfo-l+...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Message has been deleted
Lumir
unread,
Jun 24, 2016, 6:13:50 AM6/24/16
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to MapInfo-L
Thank you Ross, its working perfect
Dňa štvrtok, 23. júna 2016 10:59:44 UTC+2 Ross Nixon napísal(-a):