CREATE DATABASE [IF NOT EXISTS] userdb;
CREATE SCHEMA userdb;
DROP DATABASE IF EXISTS userdb;
DROP DATABASE IF EXISTS userdb CASCADE;
CREATE TABLE IF NOT EXISTS employee ( eid int, name String,
salary String, destination String)
Ref Links:
- Talk about yourself
- Introduce the title
- Talk about the goal
regex_3/_regex.c:46:20: fatal error: Python.h: No such file or directory
If you are experiencing errors like the one above while trying to install regex via pip3.6, it basically means that the gcc needs the python.h header file for compilation and it's currently missing so you will have to install the python3.6-dev package to solve this problem.
Solution:
NewerOlder