------------- MySQL batch Modification

Source: Internet
Author: User

SELECT
CONCAT ('alter table', table_name, 'alter column', column_name, 'set default null; ') as col, TABLE_NAME, COLUMN_NAME, DATA_TYPE
FROM
INFORMATION_SCHEMA.columns
WHERE
TABLE_SCHEMA = 'test' -- represents the database
AND
Data_type in ('varchar ', 'Char ')
AND
Not exists (SELECT 1 FROM KEY_COLUMN_USAGE WHERE TABLE_SCHEMA = 'test' AND CONSTRAINT_NAME = 'Primary' AND TABLE_NAME = A. TABLE_NAME AND COLUMN_NAME = A. COLUMN_NAME)

The system tables in MYSQL are all sorted.

--- The following is the column where the data queried by MYSQL is not the primary key.

SELECT
TABLE_NAME, -- table name

COLUMN_NAME, -- field name

DATA_TYPE -- field type
FROM
'Columns 'a
WHERE
TABLE_SCHEMA = 'honghui2'
AND
Not exists (SELECT 1 FROM KEY_COLUMN_USAGE WHERE TABLE_SCHEMA = 'honghui2' AND CONSTRAINT_NAME = 'Primary 'AND TABLE_NAME = A. TABLE_NAME AND COLUMN_NAME = A. COLUMN_NAME)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.