数据库如下:
create table DiaryInfo
(
id int identity(1,1) primary key not null,
createor nvarchar(10) not null,
createTime datetime not null
)
go
1,如何在c#中用sql语句插入系统当前时间,请高手给出SQL语句和求出当前时间的语句。
2.如果把数据库中的时间换成是varchar(30),如何用SQL语句插入。不甚感激!
string sql =string.Format("insert into DiaryInfo values ({'0'},{'1'}",变量,时间);
后面这个时间该怎么写就能插入数据库了??