Category: web

web sites, wed design projects

How to check the creation date of your databases (MySQL)

The Query If you have a lot of databases and you want to check their creation dates just run this SELECT. If the ‘create_time’ is null then your user won’t have the necessary permissions. SELECT table_schema, MAX(create_time) create_time FROM information_schema.tables — where TABLE_SCHEMA =’myDb’ — uncomment for specific database GROUP BY TABLE_SCHEMA — SORT BY…

Some of Best Online sources to learn WEB Development

When it comes to web programming I like to read and learn from these sites and I highly recommend them: https://www.sitepoint.com/ – free&paid https://www.freecodecamp.org – Free https://scrimba.com – free&paid https://dev.to/ https://www.codecademy.com – free&paid eduonix.com/ – paid https://www.udemy.com/ – free&paid There is many more but these are my favourites If you stuck and you need help…