百科知识

sqlserver数据库如何插入数据呀?

2006-03-28 19:02:14捷***
sql server数据库如何插入数据呀?sqlserver数据库如何插入数据呀?:insert into [([,……)] 例如:对表student 求学生的平均年龄?

最佳回答

  • insert into [([,……)] 例如:对表student 求学生的平均年龄,并把结果存入数据库,表名为deptage insert into deptage(sdept,avgage)/*sdept存放系名,avgage存放平均年龄*/ select sdept,AVG(sage) from Student group by sdept;
    2006-03-28 20:43:03
  • 嗯,第一位说得不错,用SQL语言中的insert into命令才是正规的
    2006-04-05 08:36:32
  • 如果不是批量的,还是从企业管理器中进行吧!
    2006-03-31 17:12:53
  • 在“查询分析器”的指令窗口中用Insert指令
    2006-03-29 20:19:45
  • 很赞哦! (220)