df --help
Wednesday, January 23, 2008
Monday, January 7, 2008
Usage of CAST in SQL
CAST( Var AS Type)
e.g.
Select CAST(1 AS Boolean);
true
Select CAST("123" AS INT);
123
Subscribe to:
Comments (Atom)
full of useful information
CAST( Var AS Type)
e.g.
Select CAST(1 AS Boolean);
true
Select CAST("123" AS INT);
123