MySQL 中的 SHOW COLUMNS 别名

发布于 2024-12-17 09:48:18 字数 333 浏览 0 评论 0原文

我想为以下 MySQL 查询创建一个别名(如 bash 中所示):

SHOW COLUMNS FROM table WHERE Field != 'col_name' AND Field != 'col_name';

我读到了一些关于 视图,但似乎我需要一个 SELECT 查询才能使用它们。

我只想在 MySQL 提示符中输入类似: showcols 的内容,并在后台执行上述查询,这可能吗?

PS:由于表中某些枚举字段的长度,我无法使用 DESCRIBE

I want to make an alias(as in bash) for the following MySQL query:

SHOW COLUMNS FROM table WHERE Field != 'col_name' AND Field != 'col_name';

I read something about views but it seems that I need a SELECT query to use them.

I want to type only something like: showcols in the MySQL prompt and in the background the above query to be executed, is that possible?

PS: I cannot use DESCRIBE because of the length of some enum fields in the table.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

蛮可爱 2024-12-24 09:48:18

您可以将 show columns 替换为 information_schema 数据库中的 select

SELECT column_name FROM INFORMATION_SCHEMA.`columns` 
WHERE column_name not IN ('col1','col2');

现在您可以基于此选择创建一个视图

CREATE VIEW as SELECT ......

You can replace the show columns with a select from the information_schema database.

SELECT column_name FROM INFORMATION_SCHEMA.`columns` 
WHERE column_name not IN ('col1','col2');

Now you can create a view based on this select:

CREATE VIEW as SELECT ......
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文