TECHIES WORLD

For Techs.... Techniques.... Technologies....

AWSBashCpanelLinuxMysql

How remove column header from MySQL query output

MySQL output contains lines column headers while printing and hence it may be difficult to use this in automation scripts.

But there is a way to hide column headers while printing the output.

-N option need to be used with the mysql command. This will remove the coulmn headers from output.

That's all…