blob: 78998c12f6977ff8c1e5d2ef93ed3729a1520632 [file] [log] [blame]
explain plan for select * from (
select cast(s.row_key as integer) student_id, cast(s.onecf.name as varchar(30)) name, cast(s.twocf.age as integer) age, cast(s.threecf.gpa as double) gpa, cast(s.fourcf.studentnum as bigint) student_num, cast(s.fivecf.create_date as timestamp) create_date from student s where s.row_key <= '800' and s.row_key >= '750') t limit 0;