所以我试图在sql语句中执行ltrim或rtrim,而不必显式键入所有列名。所以基本上不是做
select ltrim(col1), ltrim(col2)... from table 1
我想做类似
的事情 select ltrim(*) from table1.
我理解通常使用select *是不好的做法,但在这种情况下它是有道理的。这适用于Sql-server 2008.有一些类似的questinos但无法找到这个特定问题的问题。提前感谢您的帮助。
答案 0 :(得分:0)
您可以动态创建查询或创建一个传递表名的存储过程。
$(".myButton").click(function () {
var idx = $(this).attr("data-index");
// You can now use the index of this button
// where ever you need it
});