Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何检索 mysql 选择查询的终端视图?
期望的结果:以下;我如何在我的结果集中得到它?而不仅仅是特定列的数字?
+---------+----------+ | Dog_ID | Owner_ID | +---------+----------+ | 1 | 1 | | 2 | 1 | | 3 | 2 | +---------+----------+
MySQL 在控制台中使用该确切的输出。打开MySQL Command Line ClientMySQL 安装附带的,然后输入您的选择,例如
MySQL Command Line Client
select * from your_table;
然后将结果从控制台输出中复制出来。