Markeloff Posted November 20, 2013 Posted November 20, 2013 Hello there, I need help here about, Steps to (create the database get data, update data, delete data, insert data (functions)). gudboi.
xXMADEXx Posted November 20, 2013 Posted November 20, 2013 SQL Doesn't use functions like mta, they are all in strings. You can try this link: http://www.w3schools.com/sql/
Renkon Posted November 20, 2013 Posted November 20, 2013 CREATE TABLE TABLE -- limiter SELECT column1, column2, ...., columnN OR just * FROM TABLE WHERE -- boolean expression or no where to show all. -- limiter UPDATE TABLE SET column1 = value1, column2 = value 2, ..., columnN = valueN -- limiter DELETE FROM TABLE WHERE -- boolean expression to tell SQLITE which row/s or w/e. -- limiter INSERT INTO TABLE(column1, column2, ...., columnN) VALUES (value1, value2, ..., valueN)
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now