Making Table Query

Drunkenneo

Registered User.
Local time
Today, 10:07
Joined
Jun 4, 2013
Messages
192
Here i have a situation i have a table where like below

Name | orderno | mail no | contact No |
---------------------------------------
a |123 |5555 | 553453 |
b |321 |8569 | 52353 |
a |123 |2344 | 553453 |
c |143 |567 | 553453 |
d |173 |6787865| 553453 |

Bad table :P
But i need a separate table where the entry of all the entries where a is coming only once.
Can this be possible.
 
I don't understand what you want to go into Table 2.

Can you provide what would be there using the records shown in your post.
 
You can make a table with the same fields, but set the Filed Property "Indexed" to "Yes (No Duplicates)" for the column you named "Name" (I would suggest you change the name to something like "FileName" or something other than just "name").

Append the data to the new table and only ONE instance of any record will be added. The result from your sample data would be:

Name orderno mail no contact No
a 123 5555 553453
b 321 8569 52353
c 143 567 553453
d 173 6787865 553453
 

Users who are viewing this thread

Back
Top Bottom