im making a program which it asks you a question and you give it an answer. How to make this work well, ive made the answers very small. example...
Q: What is the fundametal particle that protons are made of?
A: Quarks
Thats what my database looks like anyway (RowID, Question,Answer). Now im using Microsoft Access as my database, which isnt ideal but i have to live with it, i want to query the database so in the answer field i could say...
The funcdamental particle is called a quark, Bob!
And it would see the word quark, match it in the database, and find the rest of the data irrelevant (because it is!)
My answercolumn is called answer, and this is one example of what i have tried...
SELECT * FROM Grade_Theory WHERE *Answer* LIKE 'The funcdamental particle is called a quark, Bob!'
OR
SELECT * FROM Grade_Theory WHERE 'The funcdamental particle is called a quark, Bob!' LIKE *Answer*
However none of this works, i get an "missing expected operator" error.
I hop ei have worded the question well enough :P
Thanks!
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.