Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要查询语句来列出数据库中包含 TransBase 中给定列名的所有表。
非常感谢您提前。
select * from syscolumn col inner join systable tbl on tbl.segno=col.tsegno where col.cname like '%col_name%';
那很快!对于将来可能需要这个的每个人。