摘要:
XAMPP是一款开源、免费的网络服务器软件,经过简单安装后,就可以在个人电脑上搭建服务器环境。本文为大家介绍Windows中安装XAMPP(Apache+Mysql+PHP)及使用方法及其相关问题的总结。 一、什么是XAMPP XAMPP(X-系统,A-Apache,M-Mysql,P-php,P- 阅读全文
摘要:
package dao; import java.sql.Connection; import java.sql.ResultSet; import java.sql.Statement; import java.util.ArrayList; import java.util.List; impo 阅读全文
摘要:
报错信息:在使用mysql-connector-java-6.0.6连接mysql数据库的时候,出现了报错:The server time zone value '�й���ʱ��' is unrecognized or represents more than one time zone. 报错 阅读全文
摘要:
阅读全文
摘要:
Office 2016 Pro Plus Retail 版激活密钥:[Key]:3XJTG-YNBMY-TBH9M-CWB2Y-YWRHH[Key]:6TCQ3-NBBJ2-RTJCM-HFRKV-G6PQV[Key]:CGGR9-NQYC7-KRRGM-K4Y8J-XW3K7[Key]:3GXXR 阅读全文
摘要:
sp_help 图书表 sp_help 借阅表 sp_help 读者表 select * from 读者表 select * from 借阅表 select * from 图书表 delete 图书表 where 图书号='P913.2/530' update 图书表 set 单价=40 ,出版社='电子工业出版社' where 图书号='TP316/... 阅读全文
摘要:
declare @todayDate char(10),@dispStr varchar(20) set @todayDate=getdate() set @dispStr='今天的日期为' select @dispStr+@todayDate declare @学号 varchar(10),@姓名 varchar(50),@班级 varchar(50) declare @所在系 var... 阅读全文
摘要:
create nonclustered index idx_student_name on student(student_name desc) go create nonclustered index idx_student_sexbirthday on student(student_sex desc,student_birthday) with fillf... 阅读全文
摘要:
create procedure UP_TEACHER_INFO as select * from Teacher where Teacher_Sex='男' go create procedure UP_course_info @scname varchar(30) as select Student.Student_No,Student_Name,Course_Name,SelectCou... 阅读全文
摘要:
use StudentManagement go create view view_course_credits as select Course_No,Course_Name,Course_Credits from Course where Course_Credits=4 go create view view_Is_Student ... 阅读全文