SQL service如何给n个字段赋值,比如:需要将符号“/”赋值给字段“1_5”"1_6"..."1_99""1_100",请教下SQL如何实现呢?
select '/' as 1_5 , '/' as 1_6 ........... ,'/' as 1_100from table;