-
Junior Member
SQL server queries
How can i select all the fields in a table with reference to 3 or more fields. what is the synax for that.
-
Re: SQL server queries
can you please clarify by passing more information.
What exactly you want ?
-
Junior Member
Re: SQL server queries
The statement for retrieving the column names from a table in sql server is
Select column1,column2, column3 from tablename where 'here you have to write the referencing conditions..
-
Contributing Member
Re: SQL server queries
You can use the fallowing statement
select * from tablename where the reference conditions
-
Junior Member
Re: SQL server queries
You can use the following query syntex
select * from tableName where firstCondition && secondCondition && thirdCondition
-
Junior Member
Re: SQL server queries
nice and helpfull answers
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules