teng84 Posted October 3, 2007 Share Posted October 3, 2007 can someone point me a good TSQL tutorial primarily mysql and can somebody tell me importance or the advantages of TSQL Quote Link to comment Share on other sites More sharing options...
Barand Posted October 3, 2007 Share Posted October 3, 2007 The only T-SQL I'm aware of is MSSQL, not MySQL. Try Google. Quote Link to comment Share on other sites More sharing options...
TheFilmGod Posted October 3, 2007 Share Posted October 3, 2007 The only T-SQL I'm aware of is MSSQL, not MySQL. Try Google. I never heard of T-sql. Very interested in finding out what it is. Maybe someone can explain... Quote Link to comment Share on other sites More sharing options...
teng84 Posted October 3, 2007 Author Share Posted October 3, 2007 i tried google but i was thingkinh like im gonna have something differen here and yah , most of TSQl os used in ms mot in my but i have seen some of the codes that i am modefying where it uses tsql? something like if, when, then etc.. i have an idea how ot use them but i really want to be good in using them Quote Link to comment Share on other sites More sharing options...
Barand Posted October 3, 2007 Share Posted October 3, 2007 T-SQL, or Transactional SQL , is the flavour of SQL used by MS SQL Server. As with many things MS, if the rest of the world has a standard for something, MS impose a new one. Some of the biggest differences from MySQL's version of SQL will be found in T-SQL's (paltry) date/time functions. Quote Link to comment Share on other sites More sharing options...
fenway Posted October 4, 2007 Share Posted October 4, 2007 Some of the biggest differences from MySQL's version of SQL will be found in T-SQL's (paltry) date/time functions. Yeah, no kidding, I had do some reporting and to get the DATE part of a DATETIME field I had to do this: SUBSTRING( CONVERT(varchar, l.triggered_on, 20 ), 1, 10 ) Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.