“Obtener Fecha actual SQL” Código de respuesta

Obtener Fecha actual SQL

SELECT getdate(); -- Get Current date in SQL Server
SRG

Fecha actual SQL

INSERT INTO my_table (last_updated) VALUES(NOW());
INSERT INTO my_table (last_updated) VALUES(sysdate);	-- Oracle
INSERT INTO my_table (last_updated) VALUES(getdate());	-- SQL Server
VasteMonde

Fecha actual de SQL

Add GETDATE() in sql query where you want to pass current timestamp.

Example
Return the current database system date and time:

SELECT GETDATE();
Ankur

SQL muestra la fecha de hoy

SELECT getdate()
GentleMan Liu

Respuestas similares a “Obtener Fecha actual SQL”

Preguntas similares a “Obtener Fecha actual SQL”

Más respuestas relacionadas con “Obtener Fecha actual SQL” en Sql

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código