这几道题,求大神帮忙
sql吧
全部回复
仅看楼主
level 1
这几道题,求大神帮忙
2017年09月08日 05点09分 1
level 2
1 select * from mes_orderSheet where name like '%测试%';
2 select * from plm_product where rownum<=5 (oracle写法)
select top 5 * from plm_product where rownum<=5 (sqlServer写法)
select * from plm_product where limit 5; (sqlServer写法)
3 select * from plm_part where materialno ='TYJ-25-JT-01';
4 delete sys_customer where customercode ='01';
5 select * from mes_mesproductionSchedule where creator ='王庆喜' order by startDAte asc;
[怒]更多sql 关注:http://www.itemperor.com 关注更多sql
2017年12月05日 03点12分 3
1