融资租赁牌照查询:创建了一个表,语句如下:

来源:百度文库 编辑:中科新闻网 时间:2024/06/28 09:16:46
Create table test
(
T_id int,
T_name char(10)
)
现在他想查询test表中所有记录,并按t_id升序排列,下列查询语句能实现这一功能的是( )。(选择两项)
A、Select * from test order by t_id
B、Select * from test order by t_id asc
C、Select * from test order
D、Select * from test order by t_id desc
E、Select * from test order by

A和B啊