12 2011 档案
摘要:地址http://www.cometgroup.com.cn/it在下载中心找找 如果你要自己开发考勤系统,参考下:http://blog.sina.com.cn/u/1625457061SQL Server创建和使用临时表(转)创建临时表 方法一: create table #临时表名(字段1 约束条件,字段2 约束条件,.....)create table ##临时表名(字段1 约束条件,字段2 约束条件,.....)方法二: select * into #临时表名 from 你的表; select * into ##临时表名 from 你的表;注:以上的#代表局部临时表,##代表全局临时
阅读全文
摘要:treeview1.Selected := treeview1.Items.Add(nil, '新节点 ');select substring(convert(varchar(50),convert(datetime,'9:12:45'),126),12,8)SELECT datename(WEEKDAY, GETDATE()) as t1 ------------得到星期五select datepart(WEEKDAY,getdate()-1)------------------显示当月第一天和最后一天-----------------------------
阅读全文
摘要:unit Unit1;interfaceuses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls;type TForm1 = class(TForm) Button1: TButton; Button2: TButton; procedure Button1Click(Sender: TObject); procedure FormCreate(Sender: TObject); procedure FormDestroy(Sender: TObj...
阅读全文
摘要:分类 数据库时间 12/10/2010 7:06:51 AM------------------------------------------------------------首先我们建立如下的表:sc(成绩表)stuid clsid scroe ----- -------- ----------------------------------------------------- 0101 1 75.00102 1 70.00103 1 90.00101 2 89.00102 2 80.00103 2 99.00101 3 89.00102 3 79.00103 3 67.0其中stui
阅读全文
浙公网安备 33010602011771号