Answers for "count lines in mysql table"

SQL
5

mysql count lines

select LENGTH(my_column)-LENGTH(REPLACE(my_column, 'n', '')) as total_new_lines
Posted by: Guest on February-16-2021
0

mysql count table rows

select table_name, sum(table_rows) as sum 
from information_schema.tables
where table_schema = '[DB NAME]'
group by table_name 
order by sum desc;
Posted by: Guest on October-23-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language