怎么写个SQL语句,是向一个变量中插入当天的日期,
发布网友
发布时间:2022-08-30 09:23
我来回答
共3个回答
热心网友
时间:2024-12-04 10:30
SQL Server ?
GETDATE() 获取当前日期时间.
Oracle ?
使用 SYSDATE
MySQL?
使用 NOW()
热心网友
时间:2024-12-04 10:31
declare @now datetime
select @now=getdate()
SELECT @now
热心网友
时间:2024-12-04 10:31
int id=1;
String name="xxx";
String sql="insert into test values ("+id+","+name+")";