How do you bring about records from a table?

Asked By 390 points N/A Posted on -
qa-featured

How do you bring about records from a table? I want to use a query which has words entered in a textbox. It only works if the specific word/s is/are entered in the criteria in the design view.

SHARE
Answered By 0 points N/A #104472

How do you bring about records from a table?

qa-featured

For you to be able to bring about records from a table in MySQL, you will need to use a loop around technique so as to find the records that you want. You will use the SQL program itself to specify the records that you want to bring about, which is a structured query language. The good thing with SQL is straight forward and it uses words like SELECT and WHERE. But when you are working on complex databases, then SQL language will become a little trickier to use. The first thing that you will need to do when reading the records is connect to the database and the read all the records that you want.

-Mathew Stone

 

Related Questions