Click here to Skip to main content
15,885,216 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
HI,
I will write a search page that whit user input(code or name) this search can fill grid ordered.of course this search depended on dropdownlist_category.
i will sql select command for this search
i have one table person and other category
Posted
Updated 27-Apr-13 11:03am
v4
Comments
[no name] 27-Apr-13 6:44am    
Thank you for updating us on your plans. Please come back if you have an actual question or run into any problems.
OriginalGriff 27-Apr-13 6:55am    
What ThePhantomUpvoter measn is that this is not a good question - we cannot work out from that little what you are trying to do.
Remember that we can't see your screen, access your HDD, or read your mind.
So tell us what you have tried, where you are stuck and we will try to help. At present there isn't a question here we can help you with.
Use the "Improve question" widget to edit your question and provide better information.
OriginalGriff 27-Apr-13 7:29am    
No, don't tell us what you want to do - we understand that part.
Do tell us what is stopping you doing it.
Until you do, we don't know what help you need!

1 solution

TABLE (TSQL)?:
CREATE TABLE [cpqaAnswers].[cpqa].[tbl_BH_personPlus](
   [person][nvarchar](27),
      [other][nvarchar](28)
   )

SELECT (TSQL)?:
SELECT [person], [other] FROM [cpqaAnswers].[cpqa].[tbl_BH_personPlus]

BULK INSERT (TSQL)?:
BULK INSERT [cpqaAnswers].[cpqa].[tbl_BH_personPlus]
   FROM 'C:\users\BH\DT\gems_(td).txt'

gems_(td).txt:
OriginalGriff	eighthours
OriginalGriff	ninehours
ThePhantomUpVoter	ninehhours  
 
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