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
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
SQL Server Transact Basic to Expert - Select Query using combined search
Karthikeyan Anbarasan
Apr 28, 2011
2.6
k
0
0
facebook
twitter
linkedIn
Reddit
WhatsApp
Email
Bookmark
SQL Server Transact Basic to Expert - Select Query using combined search
This blog shows on how to do a combined search of a table using the where clause
Syntax:
SELECT Column_list
FROM table
Where Column1="" and Column2=""
Example:
Select empname
from emptable
where empid = '10' and empsal = "1500"
SQL Server Transact Basic to Expert - Select Query using combined search
Next Recommended Reading
SQL Server Transact Basic to Expert - Insert Query Using Select