Answers for "get columncount sql"

SQL
1

get columns number sql

#With SQL

SELECT count(*)
FROM information_schema.columns
WHERE table_name = 'Your_table_name';
Posted by: Guest on May-04-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language