在一张表中,我有一个条目
12-345678
123-456-789
123456789
在 UI 文本框中,当有人键入时: - (two spaces then one dash).
输出应该是:
12-345678
在 UI 文本框中,当有人键入时:12-
输出应该是:
12-345678
在 UI 文本框中,当有人键入时:12
12-345678
123-456-789
123456789
我的选择查询是
select column1,column2 from table1 where column1 like '%textbox1.text%';
textbox1.text-> UI 的文本框名称。
之前的任何东西 - 都需要退回,例如:
if you type 12-, return output should be 12-345678 alone,
if you type 123-, then the return output should be 123-456-789 alone.
if you type - (only dash, no space on the front , then the return output should be 12-345678 and 123-456-789 .
但是它在少数情况下会失败,有什么方法可以计算空间并直接在 sql 中修改查询?