【发布时间】:2012-07-05 16:18:21
【问题描述】:
我目前正在尝试将语法从 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 中设置列吗?
【问题讨论】: