mysql-基本操作

#查询某个字段在哪些表里
SELECT * FROM information_schema.columns WHERE column_name='ploy_play_period';

#清空表
truncate table 表;

原文地址:https://www.cnblogs.com/CWQPHP/p/10551414.html