November 2024 M T W T F S S « Jan 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 -
Recent Posts
Archives
Meta
Tags
Category Archives: sql
How to check for EOF in MySQL
In ASP, I can check for an End-Of-File condition by using rs.EOF ‘ returns True or False For example, if I’m verifying if a certain UserName exists in the database, I can do a SELECT * FROM query, and check … Continue reading
Posted in sql
Comments Off on How to check for EOF in MySQL
Mirosoft SQL Server vs. MySQL Server
Note to self: Minor difference between the TOP command in MSSQL and MySQL equivalent. — MS-SQL / SQL-Server SELECT TOP 10 * FROM ExampleTable WHERE Active = 1 ORDER BY Id DESC — MySQL SELECT * FROM ExampleTable WHERE Active = … Continue reading