我在数据库表中使用反引号作为列标题的“from”和“to”。现在,我如何选择它们?
首先,要使用保留字,应将其设置为反引号,如下所示:-
`from` `to`
由于您要选择如上所示使用反引号设置为列名的列,因此需要实现以下功能:-
select `to`,`from` from yourTableName;
让我们首先创建一个表,列名为使用反引号的 from 和 to -
mysql> create table DemoTable720 ( `from` date, `to` date ); Query OK, 0 rows affected (0.69 sec)
使用 insert 命令在表中插入一些记录 -
mysql> insert into DemoTable720 values('2019-01-21','2019-07-23'); Query OK, 1 row affected (0.16 sec) mysql> insert into DemoTable720 values('2017-11-01','2018-01-31'); Query OK, 1 row affected (0.20 sec) mysql> insert into DemoTable720 values('2015-08-11','2016-09-19'); Query OK, 1 row affected (0.12 sec)
使用 select 语句显示表中的所有记录 -
mysql> select *from DemoTable720;
这将产生以下输出 -
+------------+------------+ | from | to | +------------+------------+ | 2019-01-21 | 2019-07-23 | | 2017-11-01 | 2018-01-31 | | 2015-08-11 | 2016-09-19 | +------------+------------+ 3 rows in set (0.00 sec)
以下是选择“to”和“from”的查询 -
mysql> select `to`,`from` from DemoTable720;
这将产生以下输出 -
+------------+------------+ | to | from | +------------+------------+ | 2019-07-23 | 2019-01-21 | | 2018-01-31 | 2017-11-01 | | 2016-09-19 | 2015-08-11 | +------------+------------+ 3 rows in set (0.00 sec)
广告