Using the SQL Server Northwind Traders Sample Database:
SELECT
ProductID,
ProductName,
FieldLength = len(ProductName)
FROM Northwind.dbo.Products
where len(ProductName) >57
"Give someone a program, and frustrate them for a day; Teach someone to program, and frustrate them for a lifetime." - Unknown
ProductID,
ProductName,
FieldLength = len(ProductName)
FROM Northwind.dbo.Products
where len(ProductName) >57
No comments:
Post a Comment