Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
Alexander Barnes
Starting Member
10 Posts |
Posted - 2007-12-29 : 17:14:41
|
| Below is from the SQL Help files on INSERT INTOhttp://msdn2.microsoft.com/en-us/library/ms174335.aspxWhat is the N doing in this script? (...N'F2'...N'Square Feet'...)-----------------------------------------USE AdventureWorks;GOINSERT INTO Production.UnitMeasureVALUES (N'F2', N'Square Feet', GETDATE());GO-----------------------------------------TIA. |
|
|
rmiao
Master Smack Fu Yak Hacker
7266 Posts |
Posted - 2007-12-29 : 21:34:07
|
| Means it's unicode string. |
 |
|
|
Alexander Barnes
Starting Member
10 Posts |
Posted - 2007-12-30 : 13:16:59
|
| Thank you. Regards. |
 |
|
|
madhivanan
Premature Yak Congratulator
22864 Posts |
Posted - 2007-12-31 : 05:08:59
|
| http://support.microsoft.com/kb/239530MadhivananFailing to plan is Planning to fail |
 |
|
|
|
|
|