MySQL:添加多列时如何不重复每列的column_definition
我正在运行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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你不能。每个列名称后面都应带有其定义。
You cannot. Each column name should be followed with its definition.