MySQL UTC_TIMESTAMP () функция
UTC_TIMESTAMP () функция
В MySQL UTC_TIMESTAMP возвращает текущую дату и время UTC в виде значения в формате «ГГГГ-ММ-ДД ЧЧ: ММ: СС» или ГГГГММДДЧЧММСС.uuuuuuu в зависимости от использования функции, то есть в строковом или числовом контексте.
Примечание . Поскольку UTC_TIMESTAMP () работает с текущей датой-временем, ваши выходные данные могут отличаться от отображаемых.
Синтаксис:
UTC_TIMESTAMP; UTC_TIMESTAMP ()
Синтаксическая диаграмма: 1
Синтаксическая диаграмма: 2
Версия MySQL: 5.6
Видео презентация
Иллюстрированная презентация
Пример: функция MySQL UTC_TIMESTAMP ()
Следующая инструкция вернет текущую дату и время UTC.
Код:
SELECT UTC_TIMESTAMP,UTC_TIMESTAMP();
Пример вывода:
mysql> SELECT UTC_TIMESTAMP, UTC_TIMESTAMP (); + --------------------- + --------------------- + | UTC_TIMESTAMP | UTC_TIMESTAMP () | + --------------------- + --------------------- + | 2015-04-14 22:52:11 | 2015-04-14 22:52:11 | + --------------------- + --------------------- + 1 ряд в наборе (0,01 с)
PHP скрипт
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>example-UTC_TIMESTAMP-function - php mysql examples | w3resource</title>
<meta name="description" content="example-UTC_TIMESTAMP-function - php mysql examples | w3resource">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-12">
<h2>Current UTC time in two different format:</h2>
<table class='table table-bordered'>
<tr>
<th>Current UTC time using UTC_TIMESTAMP</th><th>Current UTC time using UTC_TIMESTAMP()</th>
</tr>
<?php
$hostname="your_hostname";
$username="your_username";
$password="your_password";
$db = "your_dbname";
$dbh = new PDO("mysql:host=$hostname;dbname=$db", $username, $password);
foreach($dbh->query('SELECT UTC_TIMESTAMP,UTC_TIMESTAMP()') as $row) {
echo "<tr>";
echo "<td>" . $row['UTC_TIMESTAMP'] . "</td>";
echo "<td>" . $row['UTC_TIMESTAMP()'] . "</td>";
echo "</tr>";
}
?>
</table>
</div>
</div>
</div>
</body>
</html>
JSP скрипт
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<%@ page import="java.sql.*" %>
<%@ page import="java.io.*" %>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>example-utc_timestamp-function</title>
</head>
<body>
<%
try {
Class.forName("com.mysql.jdbc.Driver").newInstance();
String Host ="jdbc:mysql://localhost:3306/w3resour_bookinfo";
Connection connection = null;
Statement statement = null;
ResultSet rs = null;
connection = DriverManager.getConnection(Host, "root", "datasoft123");
statement = connection.createStatement();
String Data ="SELECT UTC_TIMESTAMP,UTC_TIMESTAMP()";
rs = statement.executeQuery(Data);
%>
<TABLE border="1">
<tr width="10" bgcolor="#9979">
<td>Current UTC time using UTC_TIMESTAMP</td>
<td>Current UTC time using UTC_TIMESTAMP()</td>
</tr>
<%
while (rs.next()) {
%>
<TR>
<TD><%=rs.getString("UTC_TIMESTAMP")%></TD>
<TD><%=rs.getString("UTC_TIMESTAMP()")%></TD>
</TR>
<% } %>
</table>
<%
rs.close();
statement.close();
connection.close();
} catch (Exception ex) {
out.println("Can’t connect to database.");
}
%>
</body>
</html>
Пример: функция UTC_TIMESTAMP () в числовом формате
Следующая инструкция вернет текущую дату и время UTC в числовом формате.
Код:
SELECT UTC_TIMESTAMP()+0;
Пример вывода:
mysql> SELECT UTC_TIMESTAMP () + 0; + ----------------------- + | UTC_TIMESTAMP () + 0 | + ----------------------- + | 20150414225635.000000 | + ----------------------- + 1 ряд в наборе (0,00 сек)
PHP скрипт
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>example1-UTC_TIMESTAMP-function - php mysql examples | w3resource</title>
<meta name="description" content="example1-UTC_TIMESTAMP-function - php mysql examples | w3resource">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-12">
<h2>Current UTC time in numeric format:</h2>
<table class='table table-bordered'>
<tr>
<th>Current UTC time in numeric format</th>
</tr>
<?php
$hostname="your_hostname";
$username="your_username";
$password="your_password";
$db = "your_dbname";
$dbh = new PDO("mysql:host=$hostname;dbname=$db", $username, $password);
foreach($dbh->query('SELECT UTC_TIMESTAMP()+0') as $row) {
echo "<tr>";
echo "<td>" . $row['UTC_TIMESTAMP()+0'] . "</td>";
echo "</tr>";
}
?>
</table>
</div>
</div>
</div>
</body>
</html>
Все функции даты и времени:
Нажмите здесь, чтобы увидеть функции даты и времени MySQL.
Предыдущая: UTC_TIME ()
Далее: НЕДЕЛЯ ()
Новый контент: Composer: менеджер зависимостей для PHP , R программирования