A.select *from students order by age desc,height descB.select *from students order age asc,height descC.select *from students order by age desc,height ascD.select *from students order by age asc,height desc
单项选择题删除表数据应该使用哪种语句格式?()
A.delete from 表名 where 条件B.delete table from 表名 where 条件C.delete from table 表名 where 条件D.delete * from 表名 where 条件
单项选择题更新表数据应该使用哪种语句格式?()
A.update 表名into 列1=值1,列2=值2...where 条件B.update table 表名set 列1=值1,列2=值2...where 条件C.update 表名set 列1=值1,列2=值2...where 条件D.update table 表名into 列1=值1,列2=值2...where 条件
单项选择题DCL语言的作用描述正确的是()。
A.对事务进行处理B.是数据操作语言C.是指针控制语言D.进行授权与权限回收
单项选择题下面关于MySQL数据库连接的URL拼写格式正确的是()。
A.jdbc:mysql://hostname:port/databaseB.jdbc:mysql:@hostname:port/databaseC.jdbc/mysql:@hostname:port?databaseD.jdbc/mysql://hostname:port?database
单项选择题JDBC六部曲执行顺序正确的是()。1.导包2.执行SQL操作3.获取连接4.释放资源5.创建状态参数6.加载驱动类
A.123654B.135264C.165324D.163524