Reputation: 11
In comand:
SELECT * FROM "Messages" author = 'spikinas' )
I got:
near "=": syntax error:
How should i change comand line for it to work?
Upvotes: 0
Views: 43
Reputation: 23
SELECT *
FROM "Name Of Your Table Without the Quotes"
WHERE author = 'spikinas'
Make sure 'spikinas' starts with LOWER CASE s, if not change the sql to 'Spikinas' UPPER CASE S
Upvotes: 0