i got that typeof function in SQLite SQLite official site says :: The typeof(X) function returns a string that indicates the datatype of the expression X: "null", "integer", "real", "text", or "blob". it will return type of column, which is "text" in our case is MySQL have typeof function .so we can get type of column ? if no , than which are the alternative function in MySQL for typeof() ?

Read more