使用MySQL
表格
ID Date
001 2010-05-01
002 2010-06-08
查询
Select ID, Date from table;
我想以特定格式显示日期
预期输出
ID Date
001 01-Mar-2010
002 08-June-2010
如何在mysql中进行查询。
需要查询帮助
这是我们的设置-我们有一个配置单元,它使用另一台计算机上的MySQL作为中间存储。我可以启动Hive命令行shell并创建一个表并对其进行描述。但是,当我登录到另一台使用MySQL作为转储存储的计算机时,我无法在MySQL上看到配置单元表的详细信息。
例如,这里有hive命令-
hive> create table student(name STRING, id INT);
OK
Time taken: 7.464 seconds
hive> describe student;
OK
name string
id int
Time taken: 0.408 seco
如果之前有人问过这个问题,或者这是不可能的,我很抱歉,但这是我希望从使用MySQL的特定表中得到的东西。
比方说,我有一个表格:
+-------------+------------------+
| property | value |
+-------------+------------------+
| style | unisex |
| color | blue |
| type | small |
+-------------+----------
正如你从下面的脚本可以看出的那样,我有一个问题,我不打算详细介绍这个脚本的作用,因为仅仅是阅读脚本就很明显了……
<body background="Background here" bgproperties="fixed">
<?php
$DBNAME="login info here";
$DBUSER="login info here";
$DBPASSWORD="login info here";
$DBHOST="login info here";
//Connecti