SQL

Simple SQL

What about SQL?

SELECT "Arch is the best!"

~ prune, 2008-05-18 10:01:39

Reusable SQL

What about SQL? Or, for reuse...

DECLARE @Arch varchar(14);
SET @Arch = "Arch is the best!";

SELECT @Arch

~ prune, 2008-05-18 10:06:39