Click here to Skip to main content
15,913,205 members
Home / Discussions / Database
   

Database

 
AnswerRe: Where to get suitable SQL Server Management Studio? Pin
adityarao3119-Jan-12 18:01
adityarao3119-Jan-12 18:01 
QuestionConditional clause form two tables in sql server Pin
Seema Bawa18-Jan-12 12:48
Seema Bawa18-Jan-12 12:48 
AnswerRe: Conditional clause form two tables in sql server Pin
_Damian S_18-Jan-12 13:03
professional_Damian S_18-Jan-12 13:03 
GeneralRe: Conditional clause form two tables in sql server Pin
Varsha Ramnani18-Jan-12 21:51
professionalVarsha Ramnani18-Jan-12 21:51 
GeneralRe: Conditional clause form two tables in sql server Pin
David Skelly18-Jan-12 22:28
David Skelly18-Jan-12 22:28 
GeneralRe: Conditional clause form two tables in sql server Pin
Varsha Ramnani19-Jan-12 1:00
professionalVarsha Ramnani19-Jan-12 1:00 
AnswerRe: Conditional clause form two tables in sql server Pin
Varsha Ramnani18-Jan-12 21:56
professionalVarsha Ramnani18-Jan-12 21:56 
AnswerRe: Conditional clause form two tables in sql server Pin
David Skelly18-Jan-12 22:35
David Skelly18-Jan-12 22:35 
I'm not sure what you mean when you say that you don't want any rows from tbTasks1. I assume that you mean that you don't want to see the tbTasks1 columns in your result set. In which case you should specify which columns you want, something like:

select tbDocument.col1, tbDocument.col2, tbDocument.col3
from tbDocument inner join tbTasks1
on tbDocument.aKey = tbTasks.aKey
where tbTasks1.IsDelete = 0


Edit: which I've just realised is exactly the same answer Damian gave earlier. Doh!
AnswerRe: Conditional clause form two tables in sql server Pin
sri08018819-Jan-12 0:06
sri08018819-Jan-12 0:06 
AnswerRe: Conditional clause form two tables in sql server Pin
SilimSayo23-Jan-12 9:45
SilimSayo23-Jan-12 9:45 
QuestionError message; with not much out on Google on this error Pin
vanikanc18-Jan-12 9:29
vanikanc18-Jan-12 9:29 
AnswerRe: Error message; with not much out on Google on this error Pin
SilimSayo18-Jan-12 9:38
SilimSayo18-Jan-12 9:38 
AnswerRe: Error message; with not much out on Google on this error Pin
Eddy Vluggen18-Jan-12 10:19
professionalEddy Vluggen18-Jan-12 10:19 
QuestionParameter names of Stored Procedures Pin
Dewald16-Jan-12 21:20
Dewald16-Jan-12 21:20 
AnswerRe: Parameter names of Stored Procedures Pin
Mycroft Holmes16-Jan-12 21:49
professionalMycroft Holmes16-Jan-12 21:49 
GeneralRe: Parameter names of Stored Procedures Pin
Dewald16-Jan-12 23:59
Dewald16-Jan-12 23:59 
GeneralRe: Parameter names of Stored Procedures Pin
sri08018819-Jan-12 0:09
sri08018819-Jan-12 0:09 
AnswerRe: Parameter names of Stored Procedures Pin
jschell18-Jan-12 8:43
jschell18-Jan-12 8:43 
QuestionHow to insert same record multiple times in Mysql using single query and not using for loop. Pin
sr15915-Jan-12 23:03
sr15915-Jan-12 23:03 
AnswerRe: How to insert same record multiple times in Mysql without using for loop. Pin
phil.o15-Jan-12 23:36
professionalphil.o15-Jan-12 23:36 
GeneralRe: How to insert same record multiple times in Mysql without using for loop. Pin
sr15916-Jan-12 0:41
sr15916-Jan-12 0:41 
AnswerRe: How to insert same record multiple times in Mysql without using for loop. Pin
Simon_Whale16-Jan-12 0:22
Simon_Whale16-Jan-12 0:22 
AnswerRe: How to insert same record multiple times in Mysql using single query and not using for loop. Pin
Jörgen Andersson16-Jan-12 0:57
professionalJörgen Andersson16-Jan-12 0:57 
AnswerRe: How to insert same record multiple times in Mysql using single query and not using for loop. Pin
Simon_Whale16-Jan-12 1:04
Simon_Whale16-Jan-12 1:04 
GeneralRe: How to insert same record multiple times in Mysql using single query and not using for loop. Pin
sr15916-Jan-12 1:22
sr15916-Jan-12 1:22 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.