Pages

Saturday 4 April 2009

Version 0.1 Released

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.

1 comment:

  1. 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.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!

    ReplyDelete