SQL高级语句 top / limit / rownum / percent (前XXX条数据) --top(SQL Server / MS Access) select top 条数 from 表; --percent(SQL Server) select top 20 percent * from 表 --选取前百分之20的数据 --limit(MySQL) select * from 表 limit 条数 --rownum(Oracle) select * from 表 where row…
Microsoft SQL Server 表数据插入,更新,删除 向表中插入数据 INSERT INTO insert into tb1 values(0004,'张凤凤') insert into tb1(id,name) values(0005,'张凤凤啊打发') insert into tb1 values(0006,'张凤凤'),(0007,'张凤凤'),(0008,'张凤凤') INSERT…SELECT --查询数据插入到已经存在的表中 insert into tb2 select…