TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Riddhi Valecha
442
3.3k
411.8k
SQL Dynamic Search Query
Dec 26 2016 4:25 AM
Dear all..
I have a table as -
ID
User
Location
Flag
1
Ashok
Mumbai
1
2
Reema
Mumbai
1
3
Kesar
Haryana
1
4
Hardik
Kolkata
1
5
Rajat
Kolkata
1
Front-End -
1. CheckListbox - List of users.
2. CheckListbox - List of Locations.
User can select multiple Users or/and Locations.
For null values (eg - if no Location is selected, System.DBValue.Null is passed)
1. If User - Ashok, then only one record must be displayed.
SQL Stored Procedure -
@User varchar(max),
@Location varchar(max)
declare @SQLQuery nvarchar(4000)
declare @Whereclause nvarchar(4000)
set @SQLQuery = 'select ID, User, Location from UserLocationTable where Flag = 1'
if @User is not null
set @Whereclause =' and User in ('+@User+)'
if @Location is not null
set @Whereclause =' and Location in ('+@Location+)'
set @SQLQuery = @SQLQuery + @Whereclause -
Issue - Passing System.DBNull.Value.ToString() from front-end makes the query as -
select ID, User, Location from UserLocationTable where Flag =1 and Location in ('')
and User in ('Ashok')
----------
How to solve this ?? Please guide
Reply
Answers (
14
)
Organisational chart with database
submit button click all page not reload c#