Which query will give the table structure with column definitions in SQL?
It depends from the database you use. Here is an incomplete list:
.schema table_name\d table_namesp_columns table_name for only columns)describe table_name describe table_name (or show columns from table_name for only columns)