News and Updates for T-SQL Tidy. An On-line Transact-SQL parser and formatter.
I've finally put the T-SQL Tidy site live today. It feels like a very long time, but its only been a few weeks from conception to implementation.
As it's only on version 0.1, please feel free to leave feedback or suggestions for improvements.
excellent what you have done so far. the only suggestion i could make is on the 'join' section.you have:FROM orders INNER JOIN ordersitems ON orders.orderid = ordersitems.orderidwhere most i believe will like:FROM orders INNER JOIN ordersitems ON orders.orderid = ordersitems.orderidwhere the join is all on one line.thanks for a great job so far!
excellent what you have done so far. the only suggestion i could make is on the 'join' section.
ReplyDeleteyou have:
FROM
orders
INNER JOIN
ordersitems
ON orders.orderid = ordersitems.orderid
where most i believe will like:
FROM
orders
INNER JOIN ordersitems ON orders.orderid = ordersitems.orderid
where the join is all on one line.
thanks for a great job so far!