Last active
May 9, 2021 19:55
-
-
Save adityadees/646de08b1ce210004ac9b8352a90e7ee to your computer and use it in GitHub Desktop.
MSYQL FUNCITON REMOVE HTML TAGS FROM RECORD AND SELECT WITH LIMIT
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT SUBSTRING(funcStripTags(myFieldName), start, end) as myAliasName FROM myTable; | |
ex : | |
SELECT SUBSTRING(funcStripTags(news), 1, 150) as news_ss FROM tbl_apps; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment