[求助]sql server中插入时间的格式
很简单的一个问题,理由是以前我都是用access,哈哈,下面这句话中插入时间怎么写?————————————————————————————————————————
Dim strSql As String = "insert into mood(theme,[content],submit_date) values('hello','how are you',2007-9-29)"
如果我是想取得当前的时间,我要怎么写?
Dim strSql As String = "insert into mood(theme,[content],submit_date) values('hello','how are you',2007-9-29)"
如果我是想取得当前的时间,我要怎么写?
改成这样 把日期转成字符串 插入就可以乐!
Dim strSql As String = "insert into mood(theme,[content],submit_date) values('hello','how are you',‘2007-9-29’)"
如果我是想取得当前的时间,我要怎么写?