Jump to content

T-SQL


teng84

Recommended Posts

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

Link to comment
https://forums.phpfreaks.com/topic/71608-t-sql/#findComment-361276
Share on other sites

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.

Link to comment
https://forums.phpfreaks.com/topic/71608-t-sql/#findComment-361287
Share on other sites

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 )

Link to comment
https://forums.phpfreaks.com/topic/71608-t-sql/#findComment-362027
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.