The SQL commands to obtain the information from the system catalog is illustrated below.
It should be noted that SQL commands are instructions to communicate with a database to perform a task.
List every table that you created. - SHOW TABLES
List every field in the Client table and its associated data type. - SHOW COLUMNS FROM CUSTOMER
List every table that contains a field named TaskID. - SELECT TBNAME FROM SYSCOLUMNS WHERE COLNAME = 'TaskID'
Learn more about SQL on:
brainly.com/question/25694408
#SPJ1