如何从 sql 输出中删除虚线?
How to remove dash line from sql output?
查询是
select * from User_table;
输出
User_name, address, phone
---------, -------, ------
Ram , MUMBAI , 444555
John , Pune , 999877
想要从输出中删除虚线,检查下面
预期输出
User_name, address, phone
Ram , MUMBAI , 444555
John , Pune , 999877
使用:
关闭下划线
select * from User_table;
查询是
select * from User_table;
输出
User_name, address, phone
---------, -------, ------
Ram , MUMBAI , 444555
John , Pune , 999877
想要从输出中删除虚线,检查下面 预期输出
User_name, address, phone
Ram , MUMBAI , 444555
John , Pune , 999877
使用:
关闭下划线
select * from User_table;