Forum: MS SQL Mar 21st, 2008 |
| Replies: 3 Views: 897 Select * from Table1 a left join Table2 b on (a.id = b.id) where a.id <> '1' |
Forum: MS SQL Mar 14th, 2008 |
| Replies: 3 Views: 962 select a.id, a.colname, b.colname from Table1 a join Table2 a on (a.id=b.id) where a.id = '1' order by a.id asc |
Forum: MS SQL Mar 12th, 2008 |
| Replies: 2 Views: 1,821 he gives a shared code :) |
Forum: MS SQL Mar 8th, 2008 |
| Replies: 5 Views: 3,559 and don't forget to stop a server for a while when you want to backup data cause it will give you an error. |
Forum: MS SQL Mar 8th, 2008 |
| Replies: 5 Views: 3,559 yeah, i do this way if i want to backup my database. i think this is a simple way.:) |
Forum: MS SQL Feb 26th, 2008 |
| Replies: 3 Views: 813 maybe sqlserver 2005 more better to use. |
Forum: MS SQL Feb 10th, 2008 |
| Replies: 4 Views: 842 your code just less single quote sign.
select TBIn.NoTbin,TBIn.IdBrg, Barang.NameBrg,TBIn.SupCode,Supplier.SupName from TBIn,Barang,Supplier
where TBIn.SupCode=Supplier.SupCode and... |
Forum: MS SQL Feb 8th, 2008 |
| Replies: 6 Views: 3,086 |
Forum: MS SQL Jan 31st, 2008 |
| Replies: 5 Views: 889 yeah, you're welcome and thx to nav33n to nice recovery. :)
don't forget to mark this solved.
All for the best. |
Forum: MS SQL Jan 31st, 2008 |
| Replies: 5 Views: 889 ah, i'm sorry for this failure. thx for the recovery.:) |
Forum: MS SQL Jan 30th, 2008 |
| Replies: 5 Views: 889 SELECT * FROM Customers where EmailAddress like '%" @ "%'" |