Click here to Skip to main content
15,889,200 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi Please i have a table in my database "Final" in the table "A2" and it contains some informations about clients orders so a client can be repeated in the same column many time ...
And i want to read all these rows in this table ("Client" is the name of the column) ....

If the number of this client has been repeated, so i want to ADD two other columns named ("IDD" and "IDR") in a listbox witch is related to this client's number


AND THANK U .... :) :D


How To read these similar rows and add it in the listbox
Posted
Updated 26-Aug-13 23:52pm
v2
Comments
[no name] 27-Aug-13 5:49am    
You need to ask a question or describe some sort of a problem.
Menon Santosh 28-Aug-13 7:59am    
poor english
Menon Santosh 28-Aug-13 8:44am    
try this query
Select IDD + ' ' + IDR from A2 Where Client='ClientName'

1 solution

You can query the data and in it, you can count for the clients which have multiple entries. Once you get the count, you can do whatever you want to do with that data.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900