compared to PHP how hard is mySQL to learn? i know quite a bit of PHP and was just wondering if its like learning a whole new language or if i should be able to pick it up rather easily?
It would take less than an hour to learn some basic Relational MySQL. (Will take a longer time for Stored Procedures, et.al)
Are you talking about the query language-- SQL that MySQL uses? SQL is the standard language used by many relational databases. This link -- http://www.w3schools.com/sql/default.asp provides a good tutorial on SQL. Q...
hi there, i am new to this forum, i am developing a web application, in which i wanted application to automatically create a database, create table and also able to store data in table as well.i would like to use MS access as backend and frontend in asp.net 2.0 Can anyone would like to help or share the views with us is most welcome. Thank you Jitesh Programmer www.intelcs.com
It is however worth learning SQL properly including stored procedures and functions etc (these are much more server dependant than straight queries) as it is much more efficient to have all the data manipulation done in the SQL server than have continuous trips between webserver and sql server (esp when the site is large and so the two are on different machines) but many people who dont know SQL well will resort to programming loops on the webserver etc to achieve the results they want