Revision [1106]

Last edited on 2011-03-30 14:13:21 by FsseInfo
Additions:
==convert==
use convert to convert character sets
select CONVERT( _utf8 'asdfasdfasdf' using latin1 )


Revision [851]

Edited on 2009-08-26 09:27:10 by FsseInfo
Additions:
==conv==
convert from one base to another (hex2dec)
SELECT
conv(mid(hexcolour,1,2),16,10) as r,
conv(mid(hexcolour,3,2),16,10) as g,
conv(mid(hexcolour,5,2),16,10) as b
FROM
hexcolours
select <date> between '20070701' and '20070701' + interval 1 month - interval 1 day
Deletions:
<date> between '20070701' and '20070701' + interval 1 month - interval 1 day


Revision [400]

Edited on 2007-07-13 07:02:23 by FsseInfo [added interval]
Additions:
==interval==
Use "interval" to create a month range
<date> between '20070701' and '20070701' + interval 1 month - interval 1 day


Revision [237]

Edited on 2006-10-16 09:50:53 by FsseInfo [added interval]
Additions:
==replace==
==locate==
locate string
select locate( search, string, start )
==substring==
get substring
select substring( col, start, length )
Deletions:
==REPLACE==


Revision [236]

Edited on 2006-10-16 09:30:23 by FsseInfo [added interval]
Additions:
==REPLACE==
replace all instances of old with new
select replace( col, old, new )
----
REFERRERS
{{backlinks}}


Revision [233]

The oldest known version of this page was created on 2006-10-06 12:46:03 by FsseInfo [added interval]
Valid XHTML :: Valid CSS: :: Powered by WikkaWiki