Skip to content
Snippets Groups Projects
Commit 502d8210 authored by kxt1g21's avatar kxt1g21
Browse files

(Commit message) Create database and table in sql to insert data

parent f706226c
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
$(/opt/lampp/bin/mysql -u root -e "create database data; use data")
$(/opt/lampp/bin/mysql -u root -e "use data; create table YoutubeViews(Name VARCHAR(100), Views int(100), DateTime DATETIME DEFAULT CURRENT_TIMESTAMP())")
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment