【单选题】流体从平面上一点,均匀的向四周流出,这样的流动称为平面
【简答题】程序阅读题:写出下列程序的运行结果。 #include void main() { int k=15; printf("%d, %o, %x", k, k, k); }
【多选题】以下关于气质的说法 正确 的是 ( ) 。
【单选题】employee 的表结构为:职工号、单位号、工资,查询单位为“002”的所有记录并存储于临时表temp中,正确的SQL命令是____________。
A.
select * from employee where 单位号="002" to dbf cursor temp
B.
select * from employee where 单位号="002" into cursor temp
C.
select * from employee where 单位号="002" to cursor temp
D.
select * from employee where 单位号="002" into cursor dbf temp