For Finding Schema_Table_Column

PHOTO EMBED

Tue Dec 26 2023 19:15:41 GMT+0000 (Coordinated Universal Time)

Saved by @darshcode #sql

select * from information_schema.columns 
where TABLE_SCHEMA ='SCE' and TABLE_NAME like'%Order%' and COLUMN_NAME like'%Order%'

select * from information_schema.columns 
WHERE TABLE_SCHEMA ='SCE' and TABLE_NAME like'vw_ORDERS_1' and COLUMN_NAME like'%Date%'
content_copyCOPY