摘要:
查询表table1里字段id小于10的所有数据,并且让数据根据id降序排列,然后得到第一条数据select * from (select * from table1 where id<10order byiddesc) whererownum=1注意:desc可以省略,默认的就是desc 阅读全文
摘要:
Insert是T-sql中常用语句,Insert INTO table(field1,field2,...) values(value1,value2,...)这种形式的在应用程序开发中必不可少。但我们在开发、测试过程中,经常会遇到需要表复制的情况,如将一个table1的数据的部分字段复制到tabl... 阅读全文