Search Results

0
votes
4answers
1k views

how to trim leading zeros from alphanumeric text in mysql function

What mysql functions are there (if any) to trim leading zeros from an alphanumeric text field? Field with value "00345ABC" would need to return "345ABC". …
2
votes
2answers
1k views

How do I check if index exists on a table field in mysql

I've needed to Google this a couple times, so I'm sharing my Q/A. …
3
votes

How do I check if index exists on a table field in mysql

SHOW INDEX FROM [tablename] …