mysql如何判斷是否存在某個欄位

cnnbull發表於2021-09-11

mysql如何判斷是否存在某個欄位

判斷表中一個欄位是否存在的方法:

語法:

select count(*) from information_schema.columns where table_name = '表名' and column_name = '欄位名'

sql例子:

select count(*) from information_schema.columns where table_name = 't_iov_vehicle_owner_info' and column_name = 'id'

推薦:

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/2524/viewspace-2833913/,如需轉載,請註明出處,否則將追究法律責任。

相關文章