0
Need help with Datatable creation!
Guys, please explain me how to create a Datatable manually. Is it possible to create it without libraries?
2 Réponses
+ 1
Thank you for your question! Yes, it's possible to create Datatable manually without libraries. If the table is quite simple, you can create it without the third-party libraries. It will be a great chance to gain experience while experimenting with the creation of own functional.
I recommend you to read the article of our JS developer where you'll find the example of a code and what there are the requirements of the development. Have a look, please! http://www.computools.com/blog/how-to-create-datatable-manually-without-the-use-of-libraries/
0
Syntax
CREATE DATABASE dbname;
e.g.
CREATE DATABASE my_first_db;
To use above created database
USE my_first_db;