Skip to content

Commit

Permalink
SQL Test
Browse files Browse the repository at this point in the history
SQL Test
  • Loading branch information
tarikulnayem94 authored Mar 22, 2022
1 parent 1ec0f74 commit ada60f1
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions DB Ts.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
use classicmodels;
show tables;

select count(*) as NumberOfColumns from
information_schema.columns where table_name ='customers';

select column_name from information_schema.columns where table_name ='customers';

select column_name, data_type from information_schema.columns where table_name='customers';
select column_name, column_type from information_schema.columns where table_name='customers';

select column_name, column_key from information_schema.columns where table_name='customers';

0 comments on commit ada60f1

Please sign in to comment.