创建一个名称为cour_info的存储过程,查询学分在3以上的课程的详细信息,使用( )语句。
A.
create proc cour_info as select * from course where credit>3 go
B.
create proc cour_info as select * from course where credit>3
C.
create proc cour_info select * from course where credit>3 go
D.
create cour_info as select * from course where credit>3 go