apakah yang anda maksud fungsi "vbnewline" seperti yang aad di vb? jika iya, berikut ada sedikit help dari sql books:
B. Use CHAR to insert a control character This example uses CHAR(13) to print name, address, and city information on separate lines, when the results are returned in text. USE Northwind SELECT FirstName + ' ' + LastName, + CHAR(13) + Address, + CHAR(13) + City, + Region FROM Employees WHERE EmployeeID = 1 Here is the result set: Nancy Davolio 507 - 20th Ave. E. Apt. 2A Seattle WA semoga dapet membantu thx. http://newbieprogrammer.blogspot.com On 1/16/08, Edwar Rinaldo <[EMAIL PROTECTED]> wrote: > > Ada yang tau turun baris di SQL Server pake apaan. > thanx a lot. > > ________________________________________________________ > Bergabunglah dengan orang-orang yang berwawasan, di di bidang Anda! > Kunjungi Yahoo! Answers saat ini juga di http://id.answers.yahoo.com/ > > [Non-text portions of this message have been removed] > > > [Non-text portions of this message have been removed]
