我目前正在尝试将语法从 sqlplus 更改为 mysql 以设置报告文件的外观,以便更有条理
set pagesize 66
set linesize 75
ttitle center EarthOrientation Parameters(U) 2
column year heading "Year" format 9999
column month heading "Month" format 99
column day heading "Day" format 99
column mjd heading "MJD" format 99999
select year, month , day , mjd, from TB_PARAMETER_UI order by year,month,day,mjd; */
有谁知道 setpage size 和 set line size 和 title 的正确替换以及如何在 mysql 中设置列?