单项选择题

在mybatis中,入参为String time=”2019-12-12 00:00:00”,Integer num=5时,下面sql中的占位符分别用()
Select * from test where create_time > {time} limit {num}

A.# #
B. $ $
C.$ #
D. # $;