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.
我需要做相当于
SHOW TABLES LIKE 'ka_product_import'
在 SQL Server 2008 中。我该怎么做?
据我了解,您是否试图显示所有名称为KA_PRODUCT_IMPORT:
KA_PRODUCT_IMPORT
SELECT * FROM SYS.TABLES WHERE NAME LIKE '%KA_PRODUCT_IMPORT%'