Forum: MS SQL Oct 5th, 2008 |
| Replies: 1 Views: 1,869 if you are looking for the connection string please findout here www.connectionstrings.com and to relate two or more tables you need to link them by primary key and refering foreignkeys. |
Forum: MS SQL Oct 5th, 2008 |
| Replies: 1 Views: 1,818 try this
foreignkey (oid) references customer(cid)
as part of the 2nd table creation. |
Forum: MS SQL Jun 13th, 2008 |
| Replies: 2 Views: 2,025 when you are posting such a questiln always post what you have tried so far to solve that . That will give us an idea on your exact requirment. |
Forum: MS SQL Jun 13th, 2008 |
| Replies: 4 Views: 2,092 |
Forum: MS SQL Jun 13th, 2008 |
| Replies: 15 Views: 2,276 what you want to do with the tables ? |
Forum: MS SQL Feb 26th, 2008 |
| Replies: 3 Views: 1,679 I am bit confused with your logic. Not sure what do you mean by that suspect. |
Forum: MS SQL Feb 26th, 2008 |
| Replies: 2 Views: 1,105 If yo want to match for two conditions then you have to specify that in the sql query. |
Forum: MS SQL Feb 26th, 2008 |
| Replies: 3 Views: 807 How can you develop a project only in sql server 2000 without using any front end tool. |
Forum: MS SQL Nov 1st, 2007 |
| Replies: 3 Views: 1,869 Try to create the view using simple where clause for checking the PurchaseDescription field and change the other fields accordingly. |
Forum: MS SQL Nov 1st, 2007 |
| Replies: 1 Views: 690 You simply need to join the tables to get the desired output. Try from your side and post the query that you have tried to get further clarification on the topic . |
Forum: MS SQL Nov 1st, 2007 |
| Replies: 3 Views: 6,929 This problem is because you are trying to create two objects by same name. You are creating a column and a constraint by the same name with in a table . this why u are getting this error . Try to use... |
Forum: MS SQL Jul 21st, 2007 |
| Replies: 3 Views: 1,096 what if the the table2 contains more/different columns than the table1 ?
you have to specify the column name
Your code will work if both the tabels are having same structure. |
Forum: MS SQL Jun 28th, 2007 |
| Replies: 7 Views: 11,717 use the IN clause
or
simply write a procedure and pass the values. that u want to delete. |