Check column data type in mysql

Using the DESCRIBE or SHOW COLUMNS command in MySQL, you may determine the data type of a column in a table. To get details about the columns in a table, use the DESCRIBE command. The command takes the table name as an argument and returns information such as the column name, data type, and other … Continue reading Check column data type in mysqlMore