mysql查看表的屬性 mysql將查詢結果給臨時變量


查看所有的表
show table status ;

查看具體的某張表
show table status from xxdb like 'tm_properties' ;

查看具體的字段的意思
select TABLE_SCHEMA,TABLE_NAME,COLUMN_NAME,COLUMN_COMMENT
from information_schema.`COLUMNS` where table_Schema='tm_show' and table_Name='tm_purchase_order';



select showName ,content into @var_name,@conetent from tm_show.tm_show where showName  like '%周黑鴨%' and showOID = '5d844572a8e20604ae0c6e44';
select @var_name,@conetent;

update tm_show.tm_show set showName= @var_name,content = @conetent where showOID = "5dca52bda8e2065e73f9e714";


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM