MySQL:添加多列时如何不重复每列的column_definition

发布于 2024-10-20 14:12:37 字数 349 浏览 0 评论 0原文

我正在运行mysql 5.0。如何编写 SQL 查询以将新列(全部相同类型)添加到表中,而不重复每个列的列类型。

例如:

mysql --user=db_user --password=db_pwd -e "ALTER TABLE db_name.db_table \
ADD ( \
new_column_1 TEXT NOT NULL,
new_column_2 TEXT NOT NULL)"

在上面的示例中,常见类型是'TEXT NOT NULL'。请注意,实际场景有更多的列,而不仅仅是示例中指定的 2 列。

总之,有没有办法“因式分解”常见类型?

I am running mysql 5.0. How do I write an SQL query to add new coloumns (all of the same type) to a table without repeating the coloumn type for each of them.

For example:

mysql --user=db_user --password=db_pwd -e "ALTER TABLE db_name.db_table \
ADD ( \
new_column_1 TEXT NOT NULL,
new_column_2 TEXT NOT NULL)"

In the example above the common type is 'TEXT NOT NULL'. Note that the actual scenario has a lot more coloumns and not just 2 as specified in the example.

Summarily, is there a way to 'factorize' the common type?

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

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

发布评论

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

评论(1

只是我以为 2024-10-27 14:12:37

你不能。每个列名称后面都应带有其定义。

You cannot. Each column name should be followed with its definition.

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